dbicTabs Send comments on this topic.
MakeTabVisible Method
See Also 
dbicTabs Assembly > Dbi.WinControl.Tabs Namespace > dbiTabs Class : MakeTabVisible Method

nTab
The index value of the tab to make visible. This method uses a 1 based index (meaning the first tab is 1).
If the number of tabs extend beyond the available space, this will bring the nTab into the visible portion of the tabs. However this will not select the tab, only ensure that the tab is visible in the display area. To make the tab selected set the SelectedTabIndex property of dbiTabs.

Syntax

Visual Basic (Declaration) 
Public Function MakeTabVisible( _
   ByVal nTab As Integer _
) As Boolean
C# 
public bool MakeTabVisible( 
   int nTab
)

Parameters

nTab
The index value of the tab to make visible. This method uses a 1 based index (meaning the first tab is 1).

Return Value

Boolean value indicating the success of the method.

Remarks

This method uses a 1 based index (meaning the first tab is 1)

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also