Sdílet prostřednictvím


EditContextFieldClassExtensions.FieldCssClass Metoda

Definice

Přetížení

FieldCssClass(EditContext, FieldIdentifier)

Získá řetězec, který označuje stav zadaného pole jako třídu CSS.

FieldCssClass<TField>(EditContext, Expression<Func<TField>>)

Získá řetězec, který označuje stav zadaného pole jako třídu CSS. To bude zahrnovat kombinaci "změněno", "platné" nebo "neplatné" v závislosti na stavu pole.

FieldCssClass(EditContext, FieldIdentifier)

Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs

Získá řetězec, který označuje stav zadaného pole jako třídu CSS.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ FieldCssClass(Microsoft::AspNetCore::Components::Forms::EditContext ^ editContext, Microsoft::AspNetCore::Components::Forms::FieldIdentifier % fieldIdentifier);
public static string FieldCssClass (this Microsoft.AspNetCore.Components.Forms.EditContext editContext, in Microsoft.AspNetCore.Components.Forms.FieldIdentifier fieldIdentifier);
static member FieldCssClass : Microsoft.AspNetCore.Components.Forms.EditContext * FieldIdentifier -> string
<Extension()>
Public Function FieldCssClass (editContext As EditContext, ByRef fieldIdentifier As FieldIdentifier) As String

Parametry

editContext
EditContext

Hodnota EditContext

fieldIdentifier
FieldIdentifier

Identifikátor pole.

Návraty

Řetězec, který označuje stav pole.

Platí pro

FieldCssClass<TField>(EditContext, Expression<Func<TField>>)

Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs
Zdroj:
EditContextFieldClassExtensions.cs

Získá řetězec, který označuje stav zadaného pole jako třídu CSS. To bude zahrnovat kombinaci "změněno", "platné" nebo "neplatné" v závislosti na stavu pole.

public:
generic <typename TField>
[System::Runtime::CompilerServices::Extension]
 static System::String ^ FieldCssClass(Microsoft::AspNetCore::Components::Forms::EditContext ^ editContext, System::Linq::Expressions::Expression<Func<TField> ^> ^ accessor);
public static string FieldCssClass<TField> (this Microsoft.AspNetCore.Components.Forms.EditContext editContext, System.Linq.Expressions.Expression<Func<TField>> accessor);
static member FieldCssClass : Microsoft.AspNetCore.Components.Forms.EditContext * System.Linq.Expressions.Expression<Func<'Field>> -> string
<Extension()>
Public Function FieldCssClass(Of TField) (editContext As EditContext, accessor As Expression(Of Func(Of TField))) As String

Parametry typu

TField

Parametry

editContext
EditContext

Hodnota EditContext

accessor
Expression<Func<TField>>

Identifikátor pole.

Návraty

Řetězec, který označuje stav pole.

Platí pro