ASP.NET Show - Manual changer customize

 
Manual changer customization

Type:
Arrow Type:
Position:
Align:

Example Code

<obshow:Show id="Show1" runat="server" ShowType="manual" ManualChanger="true">
    <Changer Type="Arrow" ArrowType="Side1" Position="Bottom" HorizontalAlign="Center" />
    <Panels>
        <obshow:Panel>
            ... Panel Content here ...    

VS.NET
Show1.ShowType = ShowType.Manual
Show1.ManualChanger = true
Show1.Changer.Type = ChangerType.Arrow
Show1.Changer.ArrowType = ArrowType.Side1
Show1.Changer.Position = ChangerPosition.Bottom
Show1.Changer.HorizontalAlign = ChangerHorizontalAlign.Center


C#
Show1.ShowType = ShowType.Manual;
Show1.ManualChanger = true;
Show1.Changer.Type = ChangerType.Arrow;
Show1.Changer.ArrowType = ArrowType.Side1;
Show1.Changer.Position = ChangerPosition.Bottom;
Show1.Changer.HorizontalAlign = ChangerHorizontalAlign.Center;