TcxEditorPropertiesCollection.Add Method
Adds a new editor item to the multi editor row.
Declaration
function Add: TcxEditorRowItemProperties;
Returns
Type |
---|
TcxEditorRowItemProperties |
Remarks
You can use the Add method to add a new editor item to the multieditor row.
To get indexed access to the collection of the multieditor row’s row items, you should use the Items property.
Hint: Items is the default property, so you can omit its name using just index notation.
The following code demonstrates using the Add method to create a new item within a multi editor row:
with merCustomerInfo.Properties.Editors.Add do
begin
Caption := 'Email';
Options.Editing := False;
end;
See Also