SetProperty
void SetProperty(sName: String^, sValue: CDocBuilderValue^)
Description
Sets a property to the CDocBuilderValue
object.
Please note, that for the
.docbuilder
file theCDocBuilderValue.SetProperty
method is not used.
Parameters
- sName
String^
- The name of the
CDocBuilderValue
object property. - sValue
CDocBuilderValue^
- The value of the
CDocBuilderValue
object property.
Example
.Net
string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder";
CDocBuilder.Initialize(workDirectory);
CDocBuilder oBuilder = new CDocBuilder();
CContext oContext = oBuilder.GetContext();
CValue oGlobal = oContext.GetGlobal();
CValue oApi = oGlobal["Api"];
CValue oDocument = oApi.Call("GetDocument");
oDocument.SetProperty("color", {"zX":{"red":112,"green":173,"blue":71,"alpha":255},"type":"srgb","Zvf":null,"type":"uniColor"});
CDocBuilder.Destroy();
There are two more ways to set a property to the CDocBuilderValue
object:
use the
Set
method that takes the object property name and value as arguments:void Set(String^ name, CDocBuilderValue^ value);
Example
.Net
string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder"; CDocBuilder.Initialize(workDirectory); CDocBuilder oBuilder = new CDocBuilder(); CContext oContext = oBuilder.GetContext(); CValue oGlobal = oContext.GetGlobal(); CValue oApi = oGlobal["Api"]; CValue oDocument = oApi.Call("GetDocument"); oDocument.Set("color", {"zX":{"red":112,"green":173,"blue":71,"alpha":255},"type":"srgb","Zvf":null,"type":"uniColor"}); CDocBuilder.Destroy();
use the
default[]
postfix expression:property CDocBuilderValue^ default[String^]
Example
.Net
string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder"; CDocBuilder.Initialize(workDirectory); CDocBuilder oBuilder = new CDocBuilder(); CContext oContext = oBuilder.GetContext(); CValue oGlobal = oContext.GetGlobal(); CValue oApi = oGlobal["Api"]; CValue oDocument = oApi.Call("GetDocument"); oDocument["color", {"zX":{"red":112,"green":173,"blue":71,"alpha":255},"type":"srgb","Zvf":null,"type":"uniColor"}]; CDocBuilder.Destroy();