public void Delete( AssociationDescription associationDescription )
Public Overloads Sub Delete( _ ByVal associationDescription As AssociationDescription _ )
Parameters
- associationDescription
- A description of the association to delete.
public void Delete( AssociationDescription associationDescription )
Public Overloads Sub Delete( _ ByVal associationDescription As AssociationDescription _ )
//must support editing! //var featSceneLayer = .... ; if (!featSceneLayer.HasAssociatedFeatureService || !featSceneLayer.IsEditable) return; var delOp = new EditOperation() { Name = "Delete selected features" }; //Assuming we have a selection on the layer... delOp.Delete(featSceneLayer, featSceneLayer.GetSelection().GetObjectIDs()); await delOp.ExecuteAsync();//await if needed but not required
Target Platforms: Windows 11, Windows 10, Windows 8.1