Class StatusBarPanelSettings
Represents a class for managing status bar panel.
Inheritance
System.Object
StatusBarPanelSettings
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Edit.Utils
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class StatusBarPanelSettings
Constructors
StatusBarPanelSettings(StatusBarAdvPanel)
Initializes a new instance of the StatusBarPanelSettings class.
Declaration
public StatusBarPanelSettings(StatusBarAdvPanel panel)
Parameters
Type | Name | Description |
---|---|---|
StatusBarAdvPanel | panel | Underlying status bar panel. |
Properties
AutoSize
Gets or sets the panel auto size mode.
Declaration
public bool AutoSize { get; set; }
Property Value
Type |
---|
System.Boolean |
MinWidth
Gets or sets the panel minimal width.
Declaration
public int MinWidth { get; set; }
Property Value
Type |
---|
System.Int32 |
Panel
Gets the underlying panel.
Declaration
public StatusBarAdvPanel Panel { get; }
Property Value
Type |
---|
StatusBarAdvPanel |
Visible
Gets or sets a value indicating whether the panel is visible or not.
Declaration
public bool Visible { get; set; }
Property Value
Type |
---|
System.Boolean |
Width
Gets or sets the panel width.
Declaration
public int Width { get; set; }
Property Value
Type |
---|
System.Int32 |
Events
MinWidthChanged
Occurs when minimum width of panel has changed.
Declaration
public event StatusBarPanelSettings.PanelMinWidthChanged MinWidthChanged
Event Type
VisibilityChanged
Occurs when Visibility of panel has changed.
Declaration
public event ValueChangedEventHandler VisibilityChanged
Event Type
WidthChanged
Occurs when width of panel has changed.
Declaration
public event StatusBarPanelSettings.PanelWidthChanged WidthChanged