TcxCustomComboBox.Properties Property
Provides access to combo box settings.
Declaration
property Properties: TcxCustomComboBoxProperties read; write;
Property Value
| Type | Description |
|---|---|
| TcxCustomComboBoxProperties | Stores combo box settings. If you access a combo box as a TcxCustomComboBox object, you need to cast the
Tip You can call the |
Remarks
You can use the Properties property to access and customize combo box settings if the RepositoryItem property is unspecified. If a repository item is assigned to the RepositoryItem property, all settings accessible through the Properties property have no effect on the combo box editor.
Note
You can use the ActiveProperties property to identify settings that currently affect the combo box.
Available Options
You can set the Properties.Revertable property to True to allow users to click a combo box editor to cycle through its values. The Properties.DropDownListStyle property allows you to switch between three available user input modes.
In addition, Properties.DropDownAutoWidth, Properties.DropDownListStyle Properties.DropDownRows, Properties.DropDownSizeable, and Properties.DropDownWidth properties allow you to customize a combo box drop-down window.
Refer to the TcxCustomComboBoxProperties class description for detailed information on all available options.
Code Example: Populate the Combo Box Menu from a Dataset Field
The code example in this section does the following:
- Assigns a TcxComboBox as an in-place editor to the Names column in a data-aware Data Grid View.
- Populates the editor’s drop-down window with values from the underlying dataset field.
Tip
If you need to add a user input string as a new combo box item, handle the OnNewLookupDisplayText event.
Follow the steps below to test this code example in your RAD Studio IDE:
- Copy the DFM code example in this section.
- Create a new project in the IDE and focus an empty form.
- Press Ctrl + V to populate the form with preconfigured components.
- Create an empty OnCreate event handler for the form and paste the code example into the handler.
- Add the cxDropDownEdit unit to the uses clause and run the project.
object cxGrid1: TcxGrid
Left = 72
Top = 80
Width = 545
Height = 200
TabOrder = 0
object cxGrid1DBTableView1: TcxGridDBTableView
Navigator.Buttons.CustomButtons = <>
ScrollbarAnnotations.CustomAnnotations = <>
DataController.DataSource = DataSource1
DataController.Summary.DefaultGroupSummaryItems = <>
DataController.Summary.FooterSummaryItems = <>
DataController.Summary.SummaryGroups = <>
object cxGrid1DBTableView1RecId: TcxGridDBColumn
DataBinding.FieldName = 'RecId'
Visible = False
end
object cxGrid1DBTableView1Groups: TcxGridDBColumn
DataBinding.FieldName = 'Groups'
end
object cxGrid1DBTableView1Names: TcxGridDBColumn
DataBinding.FieldName = 'Names'
end
object cxGrid1DBTableView1Values: TcxGridDBColumn
DataBinding.FieldName = 'Values'
Width = 54
end
end
object cxGrid1Level1: TcxGridLevel
GridView = cxGrid1DBTableView1
end
end
object dxMemData1: TdxMemData
Active = True
Indexes = <>
Persistent.Data = {
5665728FC2F5285C8FFE3F04000000140000000100070047726F757073001400
0000010006004E616D657300040000000300070056616C756573000400000009
000600446174657300010600000047726F75703101050000004E616D6531010A
000000017B000B00010600000047726F75703101050000004E616D6532011400
000001CF0E0B00010600000047726F75703201050000004E616D6533011E0000
00017A210B00010600000047726F75703201050000004E616D65340128000000
01892B0B00}
SortOptions = []
Left = 520
Top = 88
object dxMemData1Groups: TStringField
FieldName = 'Groups'
end
object dxMemData1Names: TStringField
FieldName = 'Names'
end
object dxMemData1Values: TIntegerField
FieldName = 'Values'
end
object dxMemData1Dates: TDateField
FieldName = 'Dates'
end
end
object DataSource1: TDataSource
DataSet = dxMemData1
Left = 472
Top = 176
end
uses
cxDropDownEdit; // Declares the TcxComboBoxProperties class
// ...
procedure TMyForm.FormCreate(Sender: TObject);
var
AProperties: TcxComboBoxProperties;
begin
// Assign a combo box as an in-place editor for the "Names" grid column
cxGrid1DBTableView1Names.PropertiesClass := TcxComboBoxProperties;
AProperties := cxGrid1DBTableView1Names.Properties as TcxComboBoxProperties;
AProperties.BeginUpdate; // Initiates the following batch operation
try
AProperties.Sorted := True; // Sorts prepopulated values
AProperties.DropDownListStyle := lsFixedList; // Limits user input to the prepoulated list
AProperties.DropDownAutoWidth := False; // Disables automatic menu width adjustment
AProperties.DropDownWidth := 105; // Sets a fixed drop-down menu width
// Populate the combo box editor's drop-down menu from the "Names" dataset field
dxMemData1.DisableControls;
try
dxMemData1.First;
while not dxMemData1.Eof do
begin
AProperties.Items.Add(dxMemData1.FieldByName('Names').AsString);
dxMemData1.Next;
end;
dxMemData1.First;
finally
dxMemData1.EnableControls;
end;
finally
AProperties.EndUpdate; // Calls EndUpdate regardless of the batch operation's success
end;
end;
