Interface ITabData
The interface that represents the data associated with a tab.
Inherited Members
System.IDisposable.Dispose()
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public interface ITabData : IDisposable
Properties
BackColor
Gets / sets the backcolor of the tab.
Declaration
Color BackColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
Enabled
Indicates the enabled state of the tab.
Declaration
bool Enabled { get; set; }
Property Value
Type |
---|
System.Boolean |
Font
Gets / sets the font of the tab.
Declaration
Font Font { get; set; }
Property Value
Type |
---|
System.Drawing.Font |
ForeColor
Gets / sets the forecolor of the tab.
Declaration
Color ForeColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
Image
Gets or sets the image.
Declaration
Image Image { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Image | The image. |
ImageChanged
Declaration
bool ImageChanged { get; set; }
Property Value
Type |
---|
System.Boolean |
ImageIndex
Gets / sets the image index of the tab.
Declaration
int ImageIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
ImageSize
Gets or sets the size of the image.
Declaration
Size ImageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Size | The size of the image. |
M_Backcolor
Gets / sets the backcolor of the tab to check if it is applied or not.
Declaration
Color M_Backcolor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
TabVisible
Indicates the visible state of the tab.
Declaration
bool TabVisible { get; set; }
Property Value
Type |
---|
System.Boolean |
Text
Gets / sets the text of the tab.
Declaration
string Text { get; set; }
Property Value
Type |
---|
System.String |
ToolTip
Gets / sets the tooltip of the tab.
Declaration
string ToolTip { get; set; }
Property Value
Type |
---|
System.String |
UseActiveTabColor
enables to set the tab back color as active tab color
Declaration
bool UseActiveTabColor { get; set; }
Property Value
Type |
---|
System.Boolean |
Events
BoundsAffected
This event will be thrown when the tab's bounds were affected.
Declaration
event EventHandler BoundsAffected
Event Type
Type |
---|
System.EventHandler |
PropertyChanged
This event is thrown when the tabs property is changed.
Declaration
event EventHandler PropertyChanged
Event Type
Type |
---|
System.EventHandler |