SetTemplate(String) Method
Sets the template and its configuration from a JSON string for use in replacement operations.
'Declaration
Public Overloads Function SetTemplate( _
ByVal As String _
) As GdPictureStatus
Parameters
- templateAsJsonString
- A JSON string representing the template and its configuration.
Example JSON
{
"config": {
"delimiter": {
"start": "{{",
"end": "}}"
}
},
"model": {
"placeholder1": "Value 1",
"placeholder2": "Value 2"
}
}
JSON schema
{
'$schema': 'http://json-schema.org/draft-04/schema#',
'type': 'object',
'properties': {
'config': {
'type': 'object',
'properties': {
'delimiter': {
'type': 'object',
'properties': {
'start': { 'type': 'string', 'minLength': 1 },
'end': { 'type': 'string', 'minLength': 1 }
},
'required': [ 'start', 'end' ]
}
},
'required': [ 'delimiter' ]
},
'model': {
'type': 'object',
'minProperties': 1
}
},
'required': [ 'config', 'model' ]
}