Class ToolTipInfo
Represents a class that contains the information to be displayed in the ToolTip.
Inheritance
Implements
Inherited Members
Namespace: Syncfusion.WinForms.Controls
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class ToolTipInfo : IDisposable
Constructors
ToolTipInfo()
Initializes a new instance of the ToolTipInfo class.
Declaration
public ToolTipInfo()
ToolTipInfo(ToolTipInfo)
Initializes a new instance of the ToolTipInfo class.
Declaration
public ToolTipInfo(ToolTipInfo toolTipInfo)
Parameters
Type | Name | Description |
---|---|---|
ToolTipInfo | toolTipInfo | An object of ToolTipInfo. |
Properties
BeakBackColor
Gets or sets the beak background color of the balloon tooltip.
Declaration
public Color BeakBackColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
Remarks
By default, beak back color will not be applied based on the corresponding ToolTip item's back color. Beak back color can be applied manually based on the corresponding ToolTip item.
BorderColor
Gets or sets the BorderColor of the v
Declaration
public Color BorderColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
BorderThickness
Gets or sets the border thickness of the tooltip.
Declaration
public int BorderThickness { get; set; }
Property Value
Type |
---|
System.Int32 |
Items
Gets or sets the ToolTipItemCollection.
Declaration
public ToolTipItemCollection Items { get; set; }
Property Value
Type |
---|
ToolTipItemCollection |
MaxWidth
Gets or sets the Maximum width of the v
Declaration
public int MaxWidth { get; set; }
Property Value
Type |
---|
System.Int32 |
Remarks
If MaxWidth is lesser than MinWidth, then the value of MinWidth will be considered as a maximum width for the ToolTip.
MinWidth
Gets or sets the Minimum width of the v
Declaration
public int MinWidth { get; set; }
Property Value
Type |
---|
System.Int32 |
Remarks
If MaxWidth is lesser than MinWidth, then the value of MinWidth will be considered as a maximum width for the ToolTip.
RightToLeft
Gets or sets a value indicating whether v
Declaration
public RightToLeft RightToLeft { get; set; }
Property Value
Type |
---|
System.Windows.Forms.RightToLeft |
ToolTipLocation
Gets or sets the location of the ToolTip based on the mouse pointer.
Declaration
public ToolTipLocation ToolTipLocation { get; set; }
Property Value
Type |
---|
ToolTipLocation |
Remarks
If the Balloon tooltip style is enabled, the balloon beak will be shown near to the mouse pointer based on the corresponding tooltip location.
ToolTipStyle
Gets or sets the style of the ToolTip.
Declaration
public ToolTipStyle ToolTipStyle { get; set; }
Property Value
Type |
---|
ToolTipStyle |
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
Dispose(Boolean)
Releases the unmanaged resources used by the collection and optionally releases the managed resources.
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | true to release both managed and unmanaged resources; false to release only unmanaged resources. |