Skip to main content

RowChangedEventArgs.ChangeType Property

Gets the way in which the row has changed.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

Declaration

public RowChangeTypeEnum ChangeType { get; }

Property Value

Type Description
RowChangeTypeEnum

A RowChangeTypeEnum enumeration member specifying the way the row has changed.

Available values:

Show 61 items
Name Description
Add

A new row has been added to the vertical grid’s VGridControlBase.Rows or a specific row’s BaseRow.ChildRows collection. This can be performed by calling the collection’s Add method.

Delete

A row has been removed from the vertical grid’s VGridControlBase.Rows or a specific row’s BaseRow.ChildRows collection.

Move

A row has been moved within the control. This can be performed using drag and drop or via the VGridControlBase.MoveRow method.

RowAssigned

Row settings have been replaced by another row’s settings using the BaseRow.AssignTo method.

Index

The row’s BaseRow.Index property has changed.

Expanded

The row’s BaseRow.Expanded property has changed.

Options

The row’s BaseRow.OptionsRow property has changed.

StyleName

The row’s BaseRow.StyleName property has changed.

Visible

The row’s BaseRow.Visible property has changed.

Height

The row’s BaseRow.Height property has changed.

MaxCaptionLineCount

The row’s BaseRow.MaxCaptionLineCount property has changed.

Tag

The row’s BaseRow.Tag property has changed.

Value

The row’s RowProperties.Value property has changed.

FormatType

The FormatInfo.FormatType attribute of the row’s RowProperties.Format property has changed.

Format

The row’s RowProperties.Format property has changed.

Caption

The row’s RowProperties.Caption property has changed.

CustomizationCaption

The row’s RowProperties.CustomizationCaption property has changed.

FieldName

The row’s RowProperties.FieldName property has changed.

SummaryFooter

Reserved for future use.

SummaryFooterStrFormat

Reserved for future use.

SeparatorString

The multi-editor row’s MultiEditorRow.SeparatorString property has changed.

SeparatorKind

The multi-editor row’s MultiEditorRow.SeparatorKind property has changed.

ImageIndex

The row’s RowProperties.ImageIndex property has changed.

RowEdit

The row’s RowProperties.RowEdit property has changed.

Width

The row’s MultiEditorRowProperties.Width property has changed.

CellWidth

The row’s MultiEditorRowProperties.CellWidth property has been changed.

FormatString

The FormatInfo.FormatString attribute of the row’s RowProperties.Format property has changed.

SortOrder

Reserved for future use.

Name

The row’s BaseRow.Name property has changed.

ReadOnly

The row’s RowProperties.ReadOnly property has changed.

Enabled

The row’s EditorRow.Enabled property has changed.

TabStop

The row’s BaseRow.TabStop property has changed.

PropertiesAdded

A new MultiEditorRowProperties object or its descendant has been added to the multi-editor row’s properties collection. This can be performed by calling the MultiEditorRowPropertiesCollection.Add method.

PropertiesDeleted

A MultiEditorRowProperties object or its descendant has been removed from the properties collection. This can be performed by calling the MultiEditorRowPropertiesCollection.RemoveAt method.

PropertiesReplaced

This property is used internally only. It is inaccessible.

PropertiesCleared

The multi-editor row’s properties collection has been cleared. This can be performed by calling the MultiEditorRowPropertiesCollection.Clear method.

PropertiesAssigned

The row item’s settings have been replaced with the settings from another row item using the RowProperties.AssignTo method.

UserProperty1

The corresponding user’s property has changed.

UserProperty2

The corresponding user’s property has changed.

UserProperty3

The corresponding user’s property has changed.

UserProperty4

The corresponding user’s property has changed.

UserProperty5

The corresponding user’s property has changed.

UserProperty6

The corresponding user’s property has changed.

UserProperty7

The corresponding user’s property has changed.

UserProperty8

The corresponding user’s property has changed.

UserProperty9

The corresponding user’s property has changed.

UserProperty10

The corresponding user’s property has changed.

UnboundType

The row’s RowProperties.UnboundType property has changed.

Fixed

The row’s BaseRow.Fixed property has changed.

UnboundExpression

The row’s RowProperties.UnboundExpression property has changed.

ShowUnboundExpressionMenu

The row’s RowProperties.ShowUnboundExpressionMenu property has changed.

ToolTip

The row’s RowProperties.ToolTip property has changed.

AllowHtmlText

The row’s caption HTML formatting setting has changed.

DrawEditorBorder

The row’s RowProperties.DrawEditorBorder property has changed.

Padding

The row’s RowProperties.Padding property has changed.

AllowEdit

The row’s RowProperties.AllowEdit property has changed.

SearchTags

The row’s RowProperties.SearchTags property has changed.

AllowCollapse

The row’s AllowCollapse property has changed.

ShowCollapseButton

The row’s ShowCollapseButton property has changed.

AllowSortOnClick

The row’s AllowSortOnClick property has changed.

ShowCaption

The row’s ShowCaption property has changed.

Remarks

This property can be useful for instance, if you want to respond to specific property changes. Available ways in which the row can change are listed in the RowChangeTypeEnum enumeration.

See Also