Share via


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