Class IgbDateTimeCellInfo
Backing information about a date time cell for the grid.
Inheritance
System.Object
IgbDateTimeCellInfo
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbDateTimeCellInfo : IgbCellInfo, JsonSerializable
Constructors
IgbDateTimeCellInfo()
Declaration
public IgbDateTimeCellInfo()
Properties
Sets or gets the simple DateTimeFormat to use for the cell.
Declaration
public DateTimeFormats DateTimeFormat { get; set; }
Property Value
DateTimeValue
Sets or gets the DateTime value for the cell.
Declaration
public DateTime DateTimeValue { get; set; }
Property Value
| Type |
Description |
| System.DateTime |
|
The format options to apply to the value
Declaration
public object FormatOverride { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
Provides a means of setting FormatOverride in the JavaScript environment.
Declaration
public string FormatOverrideScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
public IgbFormatSpecifierCollection FormatSpecifiers { get; set; }
Property Value
The format string to apply to the value
Declaration
public string FormatStringOverride { get; set; }
Property Value
| Type |
Description |
| System.String |
|
IsOffsetValue
Sets or gets whether the value to use is a DateTimeOffset value.
Declaration
public bool IsOffsetValue { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements