Class CloneableAttribute
Attribute that marks a class or property as cloneable or not.
Inheritance
System.Object
CloneableAttribute
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class CloneableAttribute : Attribute
Constructors
CloneableAttribute(Boolean)
Initializes a new instance of the CloneableAttribute class.
Declaration
public CloneableAttribute(bool isCloneable)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isCloneable | Indicates whether the class or property is cloneable. |
Properties
IsCloneable
Gets a value indicating whether the class or property is cloneable.
Declaration
public bool IsCloneable { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|