Skip to main content
A newer version of this page is available. .

MapEditor.FinishItem() Method

Finishes the current edit or create operation.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.2.dll

Declaration

public void FinishItem()

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