|
Name |
Description |
|
dockableObject.IsDockableObject property |
Returns true if the object is dockable object. |
|
dockableObject.ParentDockingZone property |
Returns the reference to the parent docking zone if object is docked; otherwise – null. |
|
dockableObject.IsDocked() function |
Returns true if object is docked; otherwise false. |
|
dockableObject.IsGripVisible(oGrip) function |
Returns true if the given oGrip is visible.
Parametes:
oGrip – grip object to check. |
|
dockableObject.SetGripVisible(oGrip, bVisible) function |
Shows/hides the given grip.
Parameters:
|
|
dockableObject.TitleBar property |
Returns a reference to the TitleBar object. |
|
dockableObject.TopGrip property |
Returns a reference to the Top grip object. |
|
dockableObject.BottomGrip property |
Returns a reference to the Bottom grip object. |
|
dockableObject.LeftGrip property |
Returns a reference to the Left grip object. |
|
dockableObject.RightGrip property |
Returns a reference to the Right grip object. |
|
dockableObject.AddEventHandler(sEventName, funcEventHandler) function |
Subscribes a given function to be executed when the specified event occurs.
Parameters:
|
|
dockableObject.RemoveEventHandler(sEventName, funcEventHandler) function |
Unsubscribes a given function not to be executed when the specified event occurs.
Parameters:
|
|
dockableObject.MoveTo(x, y,useEffects) function |
Moves the dockable object to the specified position (x, y).
Parameters:
|
|
dockableObject.SetSize(width, height) function |
Set the size of the dockable object.
Parameters:
|
|
dockableObject.IsVisible() function |
Returns true if the object is visible; otherwise – false. |
|
dockableObject.Show() function |
Shows a hidden object. |
|
dockableObject.Hide() function |
Hides a visible object. |
|
dockableObject.GetCommandByName(sCommandName) function |
Gets a command object with the specified name. |
|
dockableObject.DockTo(dockingZone) function |
Docks the object to the specified docking zone. |
|
dockableObject.Expand(expanded) function |
Expands/collapse the object. Parameters:
expanded – if false collapses the object; otherwise expand it.
|
|
dockableObject.Collapse() function |
Collapses the object. |
|
dockableObject.Pin() function |
Pins the object.
|
|
dockableObject.Unpin() function |
Unpins the object. |
|
SaveState() function |
Saves the current state of the dockable object. Use dockableObject.SaveState() after explicit call to dockableObject.MoveTo() or dockableObject.SetSize() so the object to be able to preserve its state on post backs to the server. |