Skip to main content

CalcEdit() Constructor

Initializes a new instance of the CalcEdit class.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v26.1.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public CalcEdit()

Remarks

The following code snippet creates a CalcEdit control with the specified value:

using DevExpress.XtraEditors;

CalcEdit calcEdit = new CalcEdit() {
    Location = new System.Drawing.Point(12, 12),
    Value = 100.5m
};

this.Controls.Add(calcEdit);
See Also