GanttCheckColumn.PropertiesCheckEdit Property
Gets the column editor's settings.
Namespace: DevExpress.Web.ASPxGantt
Assembly: DevExpress.Web.ASPxGantt.v20.2.dll
Declaration
public CheckBoxProperties PropertiesCheckEdit { get; }
Public ReadOnly Property PropertiesCheckEdit As CheckBoxProperties
Property Value
Type | Description |
---|---|
CheckBoxProperties | The column editor's settings. |
Available values:
Name | Description |
---|---|
CheckBoxStyle | Gets the settings defining the appearance of a column editor in browse mode. |
CheckBoxFocusedStyle | Gets the style settings which define a check box appearance in the focused state. |
ClientSideEvents | Gets an object that lists the client-side events specific to the ASPxCheckBox. |
DisplayImageGrayed | Gets the settings defining an image that specifies the undefined (grayed) state of a column editor in browse mode. |
DisplayImageUndefined | Obsolete. Gets the settings defining an image that specifies the undefined state of a column editor in browse mode. |
DisplayImageUnchecked | Gets the settings defining an image that specifies the unchecked state of a column editor in browse mode. |
DisplayImageChecked | Gets the settings defining an image that specifies the checked state of a column editor in browse mode. |
UseDisplayImages | Gets or sets a value that specifies whether the editor's check state is represented by custom images in browse mode. |
DisplayTextGrayed | Gets or sets the text that is denoted by the grayed state of a column editor in browse mode. |
DisplayTextUndefined | Obsolete. Gets or sets the text that represents the undefined state of a column editor in browse mode. |
DisplayTextUnchecked | Gets or sets the text that represents the unchecked state of a column editor in browse mode. |
DisplayTextChecked | Gets or sets the text that represents the checked state of a column editor in browse mode. |
ValueGrayedString | For internal use only. |
ValueUncheckedString | For internal use only. |
ValueCheckedString | For internal use only. |
ToggleSwitchDisplayMode | Gets or sets a value specifying the check box display mode. |
AllowGrayedByClick | Gets or sets a value that specifies whether a check box can be set to a grayed state by a mouse click. |
AllowGrayed | Gets or sets a value specifying whether the grayed state is available for a check box. |
ValueGrayed | Gets or sets the value that corresponds to the editor's grayed state. |
ValueUnchecked | Gets or sets the value that represents the editor's unchecked state. |
ValueChecked | Gets or sets the value that represents the editor's checked state. |
ValueType | Gets the data type of the editor's values. |
GetExportValue(CreateDisplayControlArgs) | For internal use only. |
GetDisplayControlDefaultAlign() | For internal use only. |
Assign(PropertiesBase) | Copies the settings of the specified object to the current one. |
CheckBoxProperties(IPropertiesOwner) | Initializes a new instance of the CheckBoxProperties class with the specified owner. |
CheckBoxProperties() | Initializes a new instance of the CheckBoxProperties class with default settings. |
Remarks
The PropertiesCheckEdit property allows you to customize the editor's appearance and behavior settings.
<dx:ASPxGantt ID="Gantt" runat="server"...>
...
<SettingsTasksList >
<Columns>
<dx:GanttCheckColumn FieldName="Delayed" Width="50">
<PropertiesCheckEdit>
<ValidationSettings>
<RequiredField IsRequired="true"
ErrorText="This field is required." />
</ValidationSettings>
</PropertiesCheckEdit>
</dx:GanttCheckColumn>
</Columns>
</SettingsTasksList>
</dx:ASPxGantt>