Skip to main content
A newer version of this page is available. .

VGridControlBase.GetCellDisplayText(MultiEditorRow, Int32, Int32) Method

Returns the display text of the specified cell within the multi-editor row.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

public string GetCellDisplayText(
    MultiEditorRow meRow,
    int recordIndex,
    int cellIndex
)

Parameters

Name Type Description
meRow MultiEditorRow

A MultiEditorRow object that represents the row where the cell resides.

recordIndex Int32

A zero-based integer that specifies the index of the record which contains the cell.

cellIndex Int32

A zero-based integer that specifies the cell’s index.

Returns

Type Description
String

A String value that represents the cell’s display text.

Remarks

The GetCellDisplayText method returns a textual representation of a specific cell value. The returned string is formatted as specified by the RowProperties.Format property of the row item in which the cell resides.

To obtain the cell’s value, use the VGridControlBase.GetCellValue method.

For information on multi-editor rows, see Rows.

See Also