ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntity Class / Deleted Property




In This Topic
    Deleted Property
    In This Topic
    Gets or sets a value indicating whether the entity is marked as deleted.
    Syntax
    'Declaration
     
    Public Property Deleted As Boolean
    'Usage
     
    Dim instance As ImGearVectorEntity
    Dim value As Boolean
     
    instance.Deleted = value
     
    value = instance.Deleted
    public bool Deleted {get; set;}
    public: __property bool get_Deleted();
    public: __property void set_Deleted( 
       bool value
    );
    public:
    property bool Deleted {
       bool get();
       void set (    bool value);
    }

    Property Value

    Boolean value.
    Remarks
    When the entity is marked as deleted, it is not actually removed but becomes invisible. The user can query all entities and undo delete operation. Deleted entities are not saved in files. The default value is false.
    See Also