Is there an easy way to determine what size a pane is in pixels? regardless of what unit was specified...
HI,
Here some code to get the size and size type of a pane.
protected void Button1_Click(object sender, EventArgs e) { Label1.Text = WebSplitter1.Panes[0].Size.Type.ToString() + " " + WebSplitter1.Panes[0].Size.Value.ToString(); }
What about client side?