Class GroupGridDateNormalizeEventArgs
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
ColumnGroupGridColumnThe date column.
TextstringThe editor text.
CultureInfoCultureInfoThe culture used for parsing.
Properties
Column
Gets the date column.
public GroupGridColumn Column { get; }
Property Value
CultureInfo
Gets the culture used for parsing.
public CultureInfo CultureInfo { get; }
Property Value
FieldName
Gets the field name.
public string FieldName { get; }
Property Value
Handled
Gets or sets a value indicating whether the event supplied a normalized value.
public bool Handled { get; set; }
Property Value
Text
Gets the editor text.
public string Text { get; }
Property Value
Value
Gets or sets the normalized value.
public DateTime Value { get; set; }
Property Value
ValueType
Gets the value type.
public Type ValueType { get; }