Table of Contents

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

Type

IsBoolean

Whether the InnerType represents a true/false value.

public bool IsBoolean { get; init; }

Property Value

bool

IsDateTime

Whether the InnerType represents a date and time.

public bool IsDateTime { get; init; }

Property Value

bool

IsEnum

Whether the InnerType represents an enumeration.

public bool IsEnum { get; init; }

Property Value

bool

IsGuid

Whether the InnerType represents a Guid value.

public bool IsGuid { get; init; }

Property Value

bool

IsNumber

Whether the InnerType represents a number.

public bool IsNumber { get; init; }

Property Value

bool

IsString

Whether the InnerType represents a string.

public bool IsString { get; init; }

Property Value

bool

Methods

Identify(Type?)

Examines the InnerType to determine supported types.

public static FieldType Identify(Type? type)

Parameters

type Type

Returns

FieldType