CalcEdit.Properties Property
Gets CalcEdit settings.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v25.2.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DXCategory("Properties")]
[SmartTagSearchNestedProperties]
public RepositoryItemCalcEdit Properties { get; }
Property Value
| Type | Description |
|---|---|
| RepositoryItemCalcEdit | Editor settings. |
Remarks
Use Properties to access and customize appearance and behavior settings.
using DevExpress.XtraEditors.Controls;
// Disable text editing in the edit box.
calcEdit1.Properties.TextEditStyle = TextEditStyles.DisableTextEditor;
See Also