Hiding notebook tab headers
You can hide the notebook tab headers by setting the Hide Tabs property to True.
Note: The tab headers are hidden on the
web client display only. This method is not applicable to the WinStudio (smart)
client display.
The notebook component becomes similar to a form page that contains a button, which allows you to view the next tab.
When the tab headers are hidden, you can dynamically change the tabs. You can perform tab switching by using a form script. You can create a form script similar to this:
{
public class MyForm : FormScript
{
public void SetCurTab( string name )
{
ThisForm.Components["notebook1"].NotebookCurTab = name;
}
}
}
Note: This script is written in C#.