Table of Contents

Interface ITabStripItem

Namespace
HP.LFT.SDK.SAP.NWBC
Assembly
HP.LFT.SDK.dll

A tab item in a SAP NWBC tab strip.

public interface ITabStripItem

Properties

Identifier

The identifier of the tab strip item. The identifier can be the 0-based numeric index or the name of the tab.

object Identifier { get; }

Property Value

object

Index

The 0-based index of the tab item within the tab strip.

int Index { get; }

Property Value

int

Name

The name of the tab item.

string Name { get; }

Property Value

string

TextRepresentation

The text representation of the tab strip item.

string TextRepresentation { get; }

Property Value

string

Methods

DragItem(object)

Performs the drag part of a drag and drop operation on a specific tab.

void DragItem(object identifier)

Parameters

identifier object

The identifier of the tab to drag. The tab name or 0-based numeric index can denote the item.

DropOnItem(object)

Performs the drop part of a drag and drop operation on a specific tab.

void DropOnItem(object identifier)

Parameters

identifier object

The identifier of the tab to drop on. The tab name or 0-based numeric index can denote the item.

Select()

Selects this tab from the tab strip.

void Select()