Skip to content

DXPropertyGridControl

DevExpress DXPropertyGridControl.

UI element class: DevExpress.XtraVerticalGrid.PropertyGridControl

Extends ManagedObject

Extends SeSSimulatedObject

Behavior Pattern: DXPropertyGridControlBehavior

Property Summary

Property Description Getter Setter
RowCount Number of rows in the table. GetRowCount

Action Summary

Action Description
DoGetRowCaption Gets caption of the row with index.
DoGetRowColor Gets color of the row with index.
DoGetRowRect Gets rectangle of the row with index.
DoGetRowValue Gets value of the row with index.
DoSetRowValue Sets value of the row with index.

Property Detail

RowCount

Number of rows in the table.

Type: number

Accessors: GetRowCount

value = SeS('SomeDXPropertyGridControl').GetRowCount()

Action Detail

DoGetRowCaption

Gets caption of the row with index.

SeS('SomeDXPropertyGridControl').DoGetRowCaption(rowIndex)

Parameters:

Name Type Description
rowIndex number Row index

Returns:

string: Row caption

DoGetRowColor

Gets color of the row with index.

SeS('SomeDXPropertyGridControl').DoGetRowColor(rowIndex)

Parameters:

Name Type Description
rowIndex number Row index

Returns:

string: Row color

DoGetRowRect

Gets rectangle of the row with index.

SeS('SomeDXPropertyGridControl').DoGetRowRect(rowIndex)

Parameters:

Name Type Description
rowIndex number Row index

Returns:

object: Row rectangle {x, y, w, h}.

DoGetRowValue

Gets value of the row with index.

SeS('SomeDXPropertyGridControl').DoGetRowValue(rowIndex)

Parameters:

Name Type Description
rowIndex number Row index

Returns:

object: Row value

DoSetRowValue

Sets value of the row with index.

SeS('SomeDXPropertyGridControl').DoSetRowValue(rowIndex, value)

Parameters:

Name Type Description
rowIndex number Row index
value string Value to set

Returns:

boolean: 'true' if successful