VintaSoft Imaging .NET SDK 14.1: Documentation for .NET developer
Vintasoft.Imaging.Office.Spreadsheet.Wpf.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 item.
    Syntax
    'Declaration
    
    Public Sub AddTabItem( _
    ByVal tabId
    The unique identifier of tab item (without "TabItem" suffix).
    As System.String, _
    ByVal control
    Control that shouls be added.
    As System.Windows.Controls.Control _
    )
    public void AddTabItem(
    System.String tabId,
    System.Windows.Controls.Control control
    )
    public: void AddTabItem(
    System.String tabId,
    System.Windows.Controls.Control* control
    )
    public:
    void AddTabItem(
    System.String tabId,
    System.Windows.Controls.Control^ control
    )

    Parameters

    tabId
    The unique identifier of tab item (without "TabItem" suffix).
    control
    Control that shouls be added.
    Exceptions
    ExceptionDescription
    Thrown if tab item with identifier tabId is not found.
    Thrown if tab item 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