ComponentOne Slider for ASP.NET WebForms
Task-Based Help / Setting C1Slider's Thumbs
In This Topic
    Setting C1Slider's Thumbs
    In This Topic

    C1Slider supports bound settings where a user can input values that indicate the upper and lower bound. This topic will walk you through creating a bound setting in Design View and in Source View.

    In Design View

    1. In the Design View, navigate to the C1Slider Properties window and locate the Values property.
    2. Click the ellipsis button to use the Int32 Collections Editor to add the values "25" and "50".
    3. Run your project. Your slider should resemble the following image:

    In Source View

    Add Values="25,50" to the <cc1:C1Slider> tags so your markup resembles the following:

    Copy Code
    <cc1:C1Slider ID="C1Slider1" runat="server" Values="25,50"><cc1:C1Slider />
    
    See Also