←Select platform

DeleteLayer Method

Summary
Deletes a layer from the container.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public void DeleteLayer( 
   AnnLayer layer, 
   bool deleteChildren 
) 
- (void)deleteLayer:(LTAnnLayer *)layer deleteChildren:(BOOL)deleteChildren NS_SWIFT_NAME(delete(_:deleteChildren:)); 
public void deleteLayer(AnnLayer layer, bool deleteChildren); 
public:  
   void DeleteLayer( 
      AnnLayer^ layer, 
      bool deleteChildren 
   ) 
def DeleteLayer(self,layer,deleteChildren): 

Parameters

layer
The layer to delete. This parameter cannot be null since you cannot delete the default root layer of the container.

deleteChildren
true to also delete the layer children (objects and layers).

Remarks

Use this method to delete a layer from the container as follows:

  • If deleteChildren is false, then only the layer is deleted and its children (objects and any child layer) will be added one level up in the container. For example, if this layer is a child of the root container, the layer children will be added to the container. If this layer has a parent layer, its children are added to the parent layer.

  • If deleteChildren is true, then the layer and its children (objects and any child layer) are completely removed from the container.

Requirements

Target Platforms

Help Version 22.0.2023.4.25
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Automation Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.