A full-size split is a horizontal or vertical split that stretches to fill the content area of a Web browser. You can create a full-size split by setting one property: C1Splitter.FullSplit. In this topic, you'll learn how to set the C1Splitter.FullSplit property in Design view, Source view, and in code.
For more information on full-size splits, see Full-Size Split.
In Design View
Complete the following steps:
In Source View
Complete the following steps:
In Code
Complete the following steps:
To write the code in Visual Basic:
Visual Basic |
Copy Code
|
---|---|
Imports C1.Web.Wijmo.Controls.C1Splitter |
To write the code in C#:
C# |
Copy Code
|
---|---|
using C1.Web.Wijmo.Controls.C1Splitter; |
To write the code in Visual Basic:
Visual Basic |
Copy Code
|
---|---|
C1Splitter1.FullSplit = True |
To write the code in C#:
C# |
Copy Code
|
---|---|
C1Splitter1.FullSplit = true; |