New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines the possible update flags of RadDataGrid based on which the control will perform measure and arrange.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
[Flags]
public enum UpdateFlags

Fields

Affects only the footer of the RadDataGrid.

C#
AffectsColumnFooter = 512

Affects only the columns of the RadDataGrid.

C#
AffectsColumnHeader = 2048

Affects the size of the columns of the RadDataGrid.

C#
AffectsColumnsWidth = 524288

General change related to the content, can affect visual representation and layout.

C#
AffectsContent = 8192

Affect only content appearance but not layout.

C#
AffectsContentAppearance = 128

Affects the visual state of the content of the RadDataGrid when the mouse is over it.

C#
AffectsContentMouseOver = 32

Affects the current cell of the RadDataGrid.

C#
AffectsCurrentCell = 4

Affects only data, no visual state or layout is affected.

C#
AffectsData = 1

Affects the decorations of the RadDataGrid.

C#
AffectsDecorations = 32768

Affects the frozen footer of the RadDataGrid.

C#
AffectsFrozenColumnFooter = 1024

Affects the frozen columns of the RadDataGrid.

C#
AffectsFrozenColumnHeader = 4096

Affects the frozen content of the RadDataGrid.

C#
AffectsFrozenContent = 16384

Affects the frozen content appearance of the RadDataGrid.

C#
AffectsFrozenContentAppearance = 256

Affects the frozen decorations of the RadDataGrid.

C#
AffectsFrozenDecorations = 65536

Affects the visual state of the header of the RadDataGrid when the mouse is over it.

C#
AffectsHeaderMouseOver = 64

Affects a specific row of the RadDataGrid.

C#
AffectsRowDetails = 8

Affects the scroll position of the RadDataGrid.

C#
AffectsScrollPosition = 262144

Affects the visual state of the content of the RadDataGrid.

C#
AffectsSearch = 16

Affects the selection of the RadDataGrid.

C#
AffectsSelection = 131072

Affects all aspects of the RadDataGrid.

C#
All = AffectsData | AllButData

Affects the layout of the RadDataGrid.

C#
AllButData = AllButFrozen | AllFrozen | AffectsScrollPosition | AffectsColumnsWidth

Affects the unfrozen area (header, content, footer) of the RadDataGrid.

C#
AllButFrozen = AffectsColumnFooter | AffectsColumnHeader | AffectsContent | AffectsDecorations

Affects the frozen area (header, content, footer) of the RadDataGrid.

C#
AllFrozen = AffectsFrozenColumnFooter | AffectsFrozenColumnHeader | AffectsFrozenContent | AffectsFrozenDecorations

No update is required.

C#
None = 0
C#
PropertyChanged = 2