ClassScopeFlag
Class
Provides the basic functionality for scope flags.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
cs-api-definition
public abstract class ScopeFlag : IScopeFlag
Inheritance: objectScopeFlag
Derived Classes:
Implements:
Constructors
ScopeFlag()
Declaration
cs-api-definition
protected ScopeFlag()
Properties
CloseScopeCallback
Gets or sets the callback which will be executed on scope close.
IsActive
Gets whether the scope is active.
ThrowOnError
Gets or sets whether to throw InvalidOperationException on error or not.
Methods
BeginScope()
Creates new scope.
CloseScope()
When overridden is executed when the scope is removed and before firing the event.
Declaration
cs-api-definition
protected abstract void CloseScope()
OnScopeClosed(EventArgs)
Executed when the scope is closed. Fires the ScopeClosed and execute the CloseScopeCallback action.
Declaration
cs-api-definition
protected virtual void OnScopeClosed(EventArgs eventArgs)
Parameters
eventArgs
OpenScope()
Opens the scope.
Declaration
cs-api-definition
public abstract void OpenScope()
Implements
Events
ScopeClosed
Occurs when the scope is closed.
Declaration
cs-api-definition
public event EventHandler ScopeClosed
Event Value
Implements