Table of Contents

Interface IDesktopTableBehavior

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

Desktop functionality provided for SAPUI5 tables. See Desktop

public interface IDesktopTableBehavior

Properties

CurrentPage

The current page number in this table.

uint CurrentPage { get; }

Property Value

uint

Methods

ClickColumnHeader(string)

Clicks the header of the specified column according to its name.

void ClickColumnHeader(string columnName)

Parameters

columnName string

the column name to click.

ClickColumnHeader(uint)

Clicks the header of the specified column according to its index.

void ClickColumnHeader(uint columnNumber)

Parameters

columnNumber uint

the column number to click (1-based).

FirstPage()

Scrolls the table to the first page.

void FirstPage()

LastPage()

Scrolls the table to the last page.

void LastPage()

MoveColumn(string, string)

Moves the specified column to the specified column position.

void MoveColumn(string column, string toColumn)

Parameters

column string

the name of the column to move.

toColumn string

the name of the column to move to.

MoveColumn(string, uint)

Moves the specified column to the specified column position.

void MoveColumn(string column, uint toColumnNumber)

Parameters

column string

the name of the column to move.

toColumnNumber uint

the column number to move to (1-based).

MoveColumn(uint, string)

Moves the specified column to the specified column position.

void MoveColumn(uint columnNumber, string toColumn)

Parameters

columnNumber uint

the number of the column to move (1-based).

toColumn string

the column to move to.

MoveColumn(uint, uint)

Moves the specified column to the specified column position.

void MoveColumn(uint columnNumber, uint toColumnNumber)

Parameters

columnNumber uint

the number of the column to move (1-based).

toColumnNumber uint

the number of the column to move to (1-based).

NavigateToPage(uint)

Scrolls the table to the specified page.

void NavigateToPage(uint pageNumber)

Parameters

pageNumber uint

the page number to scroll to

NextPage()

Scrolls the table to the next page.

void NextPage()

OpenMenu(string)

Clicks the column header (according to its name) to open the associated menu.

void OpenMenu(string columnName)

Parameters

columnName string

the column name to click.

OpenMenu(uint)

Clicks the column header (according to its index) to open the associated menu.

void OpenMenu(uint columnNumber)

Parameters

columnNumber uint

the column number to click (1-based).

PreviousPage()

Scrolls the table to the previous page.

void PreviousPage()

ResizeColumn(string, uint)

Resizes the specified column (according to its name) to the specified width.

void ResizeColumn(string column, uint width)

Parameters

column string

the name of the column to resize

width uint

the new column width

ResizeColumn(uint, uint)

Resizes the specified column (according to its index) to the specified width.

void ResizeColumn(uint columnNumber, uint width)

Parameters

columnNumber uint

the number of the column to resize (1-based).

width uint

the width to resize to.