MapEditor.FinishItem() Method
Finishes the current edit or create operation.
Namespace: DevExpress.XtraMap
Assembly: DevExpress.XtraMap.v24.1.dll
NuGet Package: DevExpress.Win.Map
Declaration
Remarks
The following code calls FinishItem in a SimpleButton‘s Click event handler.
simpleButton1.Click += SimpleButton1_Click;
// . . .
private void SimpleButton1_Click(object sender, EventArgs e) {
mapControl.MapEditor.FinishItem();
}
See Also