Skip to main content
All docs
V26.1
  • MapEditor.FinishItem() Method

    Finishes the current edit or create operation.

    Namespace: DevExpress.XtraMap

    Assembly: DevExpress.XtraMap.v26.1.dll

    NuGet Package: DevExpress.Win.Map

    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