From 69c27fd2cc18f284ba3f6fc93e6f691cd08b365d Mon Sep 17 00:00:00 2001 From: ANZ1217 Date: Wed, 3 May 2023 14:14:06 +0900 Subject: [PATCH] Update setXMLSync Command in Aurum document Change-Id: I90bf07ebf53e8f5e32b2062a6853041424dab08d --- docs/docs/commands/application/setxmlsync.md | 106 ++++++++++++++++++ .../uiobject/{setfous.md => setfocus.md} | 0 2 files changed, 106 insertions(+) create mode 100644 docs/docs/commands/application/setxmlsync.md rename docs/docs/commands/uiobject/{setfous.md => setfocus.md} (100%) diff --git a/docs/docs/commands/application/setxmlsync.md b/docs/docs/commands/application/setxmlsync.md new file mode 100644 index 0000000..d8a4a7b --- /dev/null +++ b/docs/docs/commands/application/setxmlsync.md @@ -0,0 +1,106 @@ +--- +layout: default +title: Set XML Sync +parent: Application Control +grand_parent: Commands +nav_order: 8 +--- +# Get Active App Tookit Name +Sets XML synchronization +## Example Usage + +
+
+{% capture code %} +{% highlight python linenos %} +response = stub.setXMLSync(ReqSetXMLSync(enable=True)) +{% endhighlight %} +{% endcapture %} +{% include fix_linenos.html code=code %} +{% assign code = nil %} +
+
+{% capture code %} +{% highlight js linenos %} +stub.setXMLSync({ enable: true }, (err, response) => { + if (err) console.log(err); + else console.log(response); +}); +{% endhighlight %} +{% endcapture %} +{% include fix_linenos.html code=code %} +{% assign code = nil %} +
+
+ +
+
+{% capture code %} +{% highlight csharp linenos %} +var response = client.setXMLSync(new ReqSetXMLSync{ enable = true, }); +{% endhighlight %} +{% endcapture %} +{% include fix_linenos.html code=code %} +{% assign code = nil %} +
+
+ +## Proto Definition + + + + + + + + + + + + + + + +
+ Name + + Requirement + + Response +
+ setXMLSync + +{% capture code %} +{% highlight ruby %} +message ReqSetXMLSync { + bool enable = 1; +} +{% endhighlight %} +{% endcapture %} +{% include fix_linenos.html code=code %} +{% assign code = nil %} + +{% capture code %} +{% highlight ruby %} +message RspSetXMLSync { + RspStatus status = 1; +} + +{% endhighlight %} +{% endcapture %} +{% include fix_linenos.html code=code %} +{% assign code = nil %} +
\ No newline at end of file diff --git a/docs/docs/commands/uiobject/setfous.md b/docs/docs/commands/uiobject/setfocus.md similarity index 100% rename from docs/docs/commands/uiobject/setfous.md rename to docs/docs/commands/uiobject/setfocus.md -- 2.34.1