Table of Contents

Class GroupGridDateNormalizeEventArgs

Namespace
Avalonia.Controls
Assembly
Tripous.Avalonia.Controls.dll

Provides data for normalizing date text before committing a group grid cell edit.

public class GroupGridDateNormalizeEventArgs : EventArgs
Inheritance
GroupGridDateNormalizeEventArgs
Inherited Members
Extension Methods

Constructors

GroupGridDateNormalizeEventArgs(GroupGridColumn, string, CultureInfo)

Initializes a new instance of the GroupGridDateNormalizeEventArgs class.

public GroupGridDateNormalizeEventArgs(GroupGridColumn Column, string Text, CultureInfo CultureInfo)

Parameters

Column GroupGridColumn

The date column.

Text string

The editor text.

CultureInfo CultureInfo

The culture used for parsing.

Properties

Column

Gets the date column.

public GroupGridColumn Column { get; }

Property Value

GroupGridColumn

CultureInfo

Gets the culture used for parsing.

public CultureInfo CultureInfo { get; }

Property Value

CultureInfo

FieldName

Gets the field name.

public string FieldName { get; }

Property Value

string

Handled

Gets or sets a value indicating whether the event supplied a normalized value.

public bool Handled { get; set; }

Property Value

bool

Text

Gets the editor text.

public string Text { get; }

Property Value

string

Value

Gets or sets the normalized value.

public DateTime Value { get; set; }

Property Value

DateTime

ValueType

Gets the value type.

public Type ValueType { get; }

Property Value

Type