Interface IFlyoutHost
This interface represents an abstraction over the AutoHideArea allowing the IFlyoutBehavior to read its state and to command it.
Namespace: Telerik.Windows.Controls.Docking
Assembly: Telerik.Windows.Controls.Docking.dll
Syntax
public interface IFlyoutHost
Properties
CurrentState
Gets the current FlyoutState of the flyout.
Declaration
FlyoutState CurrentState { get; }
Property Value
FlyoutState
|
IsMouseOver
Gets a value indicating whether the mouse is over the selected RadPane or the flyout.
Declaration
bool IsMouseOver { get; }
Property Value
System.Boolean
|
SelectedPane
Gets the currently selected RadPane in the flyout.
Declaration
RadPane SelectedPane { get; }
Property Value
RadPane
|
Methods
ActivatePane(RadPane)
Changes the current active RadPane.
Declaration
void ActivatePane(RadPane pane)
Parameters
RadPane
pane
The pane to be activated. |
CancelCloseTimer()
Cancels the close timer, if running. The behavior is not notified for this, but the current state is updated.
Declaration
void CancelCloseTimer()
CancelOpenTimer()
Cancels the open timer, if running. The behavior is not notified for this, but the current state is updated.
Declaration
void CancelOpenTimer()
Close()
Closes the flyout instantly.
Declaration
void Close()
Open()
Opens the flyout instantly.
Declaration
void Open()
SetSelectedPane(RadPane)
Changes the current selected RadPane.
Declaration
void SetSelectedPane(RadPane pane)
Parameters
RadPane
pane
The new RadPane to be selected. |
StartCloseAnimation()
Starts the close animation of the flyout.
Declaration
void StartCloseAnimation()
StartCloseTimer()
Starts the close timer of the flyout. When the timeout passes, the OnClosingTimerTimeout method of the IFlyoutBehavior is called.
Declaration
void StartCloseTimer()
StartOpenAnimation()
Starts the open animation of the flyout.
Declaration
void StartOpenAnimation()
StartOpenTimer()
Starts the open timer of the flyout. When the timeout passes, the OnOpeningTimerTimeout method of the IFlyoutBehavior is called.
Declaration
void StartOpenTimer()