ComponentOne Slider for ASP.NET WebForms
Task-Based Help / Changing Orientation
In This Topic
    Changing Orientation
    In This Topic

    C1Slider can appear horizontally or vertically. The default orientation for the C1Slider control is horizontal. This topic will walk you through setting C1Slider's orientation in Design View and in Source View.

    In Design View

    Complete the following steps:

    1. Navigate to the C1Slider Properties window and locate the Orientation property in the list.
    2. Use the drop-down menu to set the property to "Vertical".

    In Source View

    Add Orientation="Vertical" to the <cc1:C1Slider> tags so it resembles the following:

    Copy Code
    <cc1:C1Slider ID="C1Slider1" runat="server" Orientation="Vertical" />
    
    See Also