1. Top panel min and max. Open example.
<obspl:HorizontalSplitter runat="server" StyleFolder="styles/default"> <TopPanel HeightMin="100" HeightMax="400" HeightDefault="200" > <Content> ... Top Panel content here ...
...
2. Bottom panel min and max. Open example.
<obspl:HorizontalSplitter runat="server" StyleFolder="styles/default"> <TopPanel> <Content> ... Top Panel content here ...
</Content> </TopPanel> <BottomPanel> <Content HeightMin="100" HeightMax="400" HeightDefault="200"> ... Bottom Panel content here ...
...
3. Top panel min, Bottom panel min. Open example.
<obspl:HorizontalSplitter runat="server" StyleFolder="styles/default"> <TopPanel HeightMin="100"> <Content> ... Top Panel content here ...
</Content> </TopPanel> <BottomPanel> <Content HeightMin="100"> ... Bottom Panel content here ...
...