Struct GridNamespaceGroupItem
Used for XML serialization, this struct contains information relating to shared expensive properties that could be the same in various places in the grid. For example, the BackgroundImage for cells, or the grid itself. Instead of having multiple listings of the same expensive object, a GridNamespaceGroupItem object will contain the Value of the item (could be a Base64 string) and a Name, which the cells could refer to.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public struct GridNamespaceGroupItem
Remarks
Syncfusion.Windows.Forms.Grid.Design.GridSyncProperties.StoredImages and Syncfusion.Windows.Forms.Grid.Design.GridSyncProperties.StoredFonts are a sample use of this.
Constructors
GridNamespaceGroupItem(String, String)
Initializes a new instance ofGridNamespaceGroupItem with the provided name and value.
Declaration
public GridNamespaceGroupItem(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.String | value |
Fields
Name
Name of the GridNamespaceGroupItem object
Declaration
public string Name
Field Value
Type |
---|
System.String |
Value
The string representation of the objects value that is stored in the GridNamespaceGroupItem object.
Declaration
public string Value
Field Value
Type |
---|
System.String |
Remarks