Class FieldType
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents a description of a MudGrid field.
public class FieldType
- Inheritance
-
FieldType
- Inherited Members
- Extension Methods
Constructors
FieldType()
public FieldType()
Properties
InnerType
The type to examine.
public Type? InnerType { get; init; }
Property Value
IsBoolean
Whether the InnerType represents a true/false value.
public bool IsBoolean { get; init; }
Property Value
IsDateTime
Whether the InnerType represents a date and time.
public bool IsDateTime { get; init; }
Property Value
IsEnum
Whether the InnerType represents an enumeration.
public bool IsEnum { get; init; }
Property Value
IsGuid
public bool IsGuid { get; init; }
Property Value
IsNumber
Whether the InnerType represents a number.
public bool IsNumber { get; init; }
Property Value
IsString
Whether the InnerType represents a string.
public bool IsString { get; init; }
Property Value
Methods
Identify(Type?)
Examines the InnerType to determine supported types.
public static FieldType Identify(Type? type)
Parameters
type
Type