Intersoft WebDesktop Documentation
Configuring Collapsible Pane
See Also Send Feedback
Intersoft WebDesktop > Common Tasks > Configuring Collapsible Pane

Glossary Item Box

Objectives

Configuring a Collapsible Pane is fairly simple. All you need to do in set the WebPane AllowCollapse property to Yes. The value of the property is an enumeration of type AllowCollapse which values are

C# Copy Code
/// <summary>
/// Enumerations for allow collapse.
/// </summary>
public enum AllowCollapse
{
    Default = 0,
    /// <summary>
    /// Element can be collapsed.
    /// </summary>
    Yes = 1,
    /// <summary>
    /// Element can't be collapsed.
    /// </summary>
    No = 2
}
  1. You can access that property during DesignTime either by right clicking the WebPaneManager and choosing WebPane Designer or WebPane Advanced Designer.
  2. In the snapshot below, the PaneSide AllowCollapse property is set to Yes so at run-time the Pane will be collapsible.



 

In the current version, the AllowCollapse property is dependant with the AllowResize property. When you set the AllowCollapse Property to Yes 


See Also

Related Tutorials
{Creating Simple Layout}

© 2012 Intersoft Solutions Corp. All Rights Reserved.