Interface ICollapsibleElement
Defines methods and properties for a calapsible element. For example, RadRibonBarChunk is a collapsible element.
Namespace: Telerik.WinControls.Layouts
Assembly: Telerik.WinControls.dll
Syntax
public interface ICollapsibleElement
Properties
CollapseMaxSteps
Gets the max number of steps needed for collapsing the collapsible element.
Declaration
int CollapseMaxSteps { get; }
Property Value
System.Int32
|
CollapseStep
Gets the current collapse step for the collapsible element.
Declaration
int CollapseStep { get; set; }
Property Value
System.Int32
|
ExpandedSize
Gets or sets a value indicating the expanded size of the element.
Declaration
Size ExpandedSize { get; set; }
Property Value
System.Drawing.Size
|
Methods
CollapseElement(Size)
Collapses the element.
Declaration
bool CollapseElement(Size preferredSize)
Parameters
System.Drawing.Size
preferredSize
|
Returns
System.Boolean
|
ExpandElement()
Expands the element.
Declaration
bool ExpandElement()
Returns
System.Boolean
|