Table of Contents

Class GuiTabStrip

Namespace
SapGui.Wrapper
Assembly
SapGui.Wrapper.dll

Wraps a SAP GUI tab strip control (GuiTabStrip). Contains one or more GuiTab children.

public class GuiTabStrip : GuiComponent
Inheritance
GuiTabStrip
Inherited Members

Properties

TabCount

Number of tabs.

public int TabCount { get; }

Property Value

int

Methods

GetTab(int)

Returns a tab by its zero-based index.

public GuiTab GetTab(int index)

Parameters

index int

Returns

GuiTab

GetTabByName(string)

Returns the first tab whose name contains nameFragment (case-insensitive).

public GuiTab? GetTabByName(string nameFragment)

Parameters

nameFragment string

Returns

GuiTab

GetTabs()

Returns all tabs as typed wrappers.

public IReadOnlyList<GuiTab> GetTabs()

Returns

IReadOnlyList<GuiTab>

SelectTab(int)

Selects a tab by its zero-based index.

public void SelectTab(int index)

Parameters

index int