Hello
How can I change the size of the first SplitterPane with C# ?
<ig:WebSplitter ID="WebSplitter1" runat="server" Height="520px" Width="910px"> <panes> <ig:SplitterPane runat="server" Size="200px" > <Template> <!-- Content --> </Template> </ig:SplitterPane> <ig:SplitterPane runat="server"> <Template> <!-- Content --> </Template> </ig:SplitterPane> </panes> </ig:WebSplitter>
Hi gtarek,
Thank you for posting in the community.
You should be able to change the size of your first splitter pane using something like:
WebSplitter1.Panes[0].Size = 500;
Please let me know if this helps.