Class UiEditableParameters
Implementation of IUiEditableParameters to hold parameters for UI editable components.
Inherited Members
Namespace: Serenity.Ui.Application.Components
Assembly: Serenity.Ui.Application.dll
Syntax
public class UiEditableParameters : IUiEditableParameters, IComponentParameters, IFoundationSettings
Constructors
UiEditableParameters()
Initializes a new instance of the UiEditableParameters class with default values.
Declaration
public UiEditableParameters()
UiEditableParameters(string, int)
Initializes a new instance of the UiEditableParameters class with the specified value and maximum length.
Declaration
public UiEditableParameters(string value, int maxLength)
Parameters
| Type | Name | Description |
|---|---|---|
| string | value | The value of the UI editable component. |
| int | maxLength | The maximum length of the editable value. |
Fields
Guid
Declaration
public string Guid
Field Value
| Type | Description |
|---|---|
| string | The globally unique identifier (GUID) for the UI editable component. |
Id
Declaration
public string Id
Field Value
| Type | Description |
|---|---|
| string | The unique identifier for the UI editable component. |
MaxLength
Declaration
public int MaxLength
Field Value
| Type | Description |
|---|---|
| int | The maximum length of the editable value. |
Value
Declaration
public string Value
Field Value
| Type | Description |
|---|---|
| string | The value of the UI editable component. |