C# Class Open.Core.Controls.CollapsePanel

A panel that can collapse.
Inheritance: ViewBase
Show file Open project: philcockfield/Open.TestHarness.SL Class Usage Examples

Private Properties

Property Type Description
CollapseAnimation void
CollapseInternal void
CollapsePanel System
FireCollapsed void
FireCollapsing void
FireInflated void
FireInflating void
FixContentSize void
Inflate void
InflateAnimation void
InflateInternal void
ReleaseContentSize void
SetContentSize void

Public Methods

Method Description
Collapse ( System.Action callback ) : void

Collapses the panel.

CollapsePanel ( jQueryObject container ) : System

Constructor.

Inflate ( System.Action callback, int targetSize ) : void

Inflates the panel (uncollapse).

Private Methods

Method Description
CollapseAnimation ( ) : void
CollapseInternal ( System.Action callback ) : void
CollapsePanel ( ) : System
FireCollapsed ( ) : void
FireCollapsing ( ) : void
FireInflated ( ) : void
FireInflating ( ) : void
FixContentSize ( ) : void
Inflate ( System.Action callback ) : void
InflateAnimation ( ) : void
InflateInternal ( System.Action callback ) : void
ReleaseContentSize ( ) : void
SetContentSize ( int value ) : void

Method Details

Collapse() public method

Collapses the panel.
public Collapse ( System.Action callback ) : void
callback System.Action Action to invoke upon completion.
return void

CollapsePanel() public method

Constructor.
public CollapsePanel ( jQueryObject container ) : System
container jQueryObject The root HTML element of the control (if null a
is generated).
return System

Inflate() public method

Inflates the panel (uncollapse).
public Inflate ( System.Action callback, int targetSize ) : void
callback System.Action Action to invoke upon completion.
targetSize int The target size to aim for.
return void