GridField.SerializeLocalizedValue Property

A Boolean indicating whether to bring over the localized value.

Namespace:  Microsoft.SharePoint.JSGrid
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Property SerializeLocalizedValue As Boolean
    Get
    Set
'Usage
Dim instance As GridField
Dim value As Boolean

value = instance.SerializeLocalizedValue

instance.SerializeLocalizedValue = value
public bool SerializeLocalizedValue { get; set; }

Property Value

Type: System.Boolean
Returns Boolean.

Remarks

The grid field requires that either SerializeLocalizedValue or SerializeDataValue must be true.

/*The Serialization type is a required property */
                    gf.SerializeLocalizedValue = true;
                    gf.SerializeDataValue = false;
'The Serialization type is a required property 
gf.SerializeLocalizedValue = True
gf.SerializeDataValue = False

See Also

Reference

GridField Class

GridField Members

Microsoft.SharePoint.JSGrid Namespace