ComponentOne Tabs for ASP.NET WebForms
C1Tabs Behavior / ToolTips
In This Topic
    ToolTips
    In This Topic

    You can use the ToolTip property to create a user-friendly interface. ToolTips are graphic user interface elements that are used to provide users with information or instructions regarding elements of a user interface. When users hover over the interface element with their cursor, a box will appear with the additional information.

    ToolTips can be applied to each tab page of a C1Tabs control by setting the ToolTip property to a string. If you wanted to set a tooltip for the first tab of the control, you would use the following code:

    To write code in Visual Basic

    Visual Basic
    Copy Code
    TabPage1.ToolTip = "Hello World!"
    

    To write code in C#

    C#
    Copy Code
    TabPage1.ToolTip = "Hello World!";
    

    You can also set the C1TabPage.ToolTip property in Design view or in Source view.

    See Also