VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Office.Spreadsheet.UI.Controls Namespace / SpreadsheetEditorMainMenuPanel Class / AddTabItem(String,Control) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    AddTabItem(String,Control) Method (SpreadsheetEditorMainMenuPanel)
    In This Topic
    Add control to an existing tab page.
    Syntax
    'Declaration
    
    Public Sub AddTabItem( _
    ByVal tabId
    The unique identifier of tab page (without "TabPage" suffix).
    As System.String, _
    ByVal control
    Control that shouls be added.
    As System.Windows.Forms.Control _
    )
    public void AddTabItem(
    System.String tabId,
    System.Windows.Forms.Control control
    )
    public: void AddTabItem(
    System.String tabId,
    System.Windows.Forms.Control* control
    )
    public:
    void AddTabItem(
    System.String tabId,
    System.Windows.Forms.Control^ control
    )

    Parameters

    tabId
    The unique identifier of tab page (without "TabPage" suffix).
    control
    Control that shouls be added.
    Exceptions
    ExceptionDescription
    Thrown if tab page with identifier tabId is not found.
    Thrown if tab page with identifier tabId already contains provided control.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also