<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – Working with Tables in a Word document online</title>
    <link>https://docs.aspose.cloud/words/tables/</link>
    <description>Recent content in Working with Tables in a Word document online on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    
	  <atom:link href="https://docs.aspose.cloud/words/tables/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Developer-Guide: Insert a row into a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/add-row/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/add-row/</guid>
      <description>
        
        
        &lt;p&gt;Inserts a new row into a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;insert-a-row-into-a-table-in-a-word-document-rest-api&#34;&gt;Insert a row into a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/post/{tablePath}/rows&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tablePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table in the document tree.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;row&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;TableRowInsert&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;Table row parameters.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;insert-a-row-into-a-table-in-a-word-document-usage-examples&#34;&gt;Insert a row into a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-insert-a-row-into-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to insert a row into a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=InsertTableRowOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=InsertTableRowOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-insert-a-row-into-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to insert a row into a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=InsertTableRowOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=InsertTableRowOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=InsertTableRowOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=InsertTableRowOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=InsertTableRowOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=InsertTableRowOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=InsertTableRowOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=InsertTableRowOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=InsertTableRowOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=InsertTableRowOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Insert a cell into a given row of a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/add-cell/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/add-cell/</guid>
      <description>
        
        
        &lt;p&gt;Inserts a new cell into a given row of a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;insert-a-cell-into-a-given-row-of-a-table-in-a-word-document-rest-api&#34;&gt;Insert a cell into a given row of a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/post/{tableRowPath}/cells&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tableRowPath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table row in the document tree.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cell&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;TableCellInsert&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;Table cell parameters.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;insert-a-cell-into-a-given-row-of-a-table-in-a-word-document-usage-examples&#34;&gt;Insert a cell into a given row of a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-insert-a-cell-into-a-given-row-of-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to insert a cell into a given row of a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=InsertTableCellOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=InsertTableCellOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-insert-a-cell-into-a-given-row-of-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to insert a cell into a given row of a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=InsertTableCellOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=InsertTableCellOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=InsertTableCellOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=InsertTableCellOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=InsertTableCellOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=InsertTableCellOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=InsertTableCellOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=InsertTableCellOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=InsertTableCellOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=InsertTableCellOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Insert a table a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/add/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/add/</guid>
      <description>
        
        
        &lt;p&gt;Inserts a new table a Word document.&lt;/p&gt;
&lt;h2 id=&#34;insert-a-table-a-word-document-rest-api&#34;&gt;Insert a table a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/post/{nodePath}/tables&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;table&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;TableInsert&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;Table parameters.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;insert-a-table-a-word-document-usage-examples&#34;&gt;Insert a table a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-insert-a-table-a-word-document-with-curl-or-postman&#34;&gt;How to insert a table a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=InsertTableOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=InsertTableOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-insert-a-table-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to insert a table a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=InsertTableOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=InsertTableOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=InsertTableOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=InsertTableOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=InsertTableOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=InsertTableOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=InsertTableOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=InsertTableOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=InsertTableOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=InsertTableOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Delete a cell from a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/delete-cell/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/delete-cell/</guid>
      <description>
        
        
        &lt;p&gt;Deletes a cell from a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;delete-a-cell-from-a-table-in-a-word-document-rest-api&#34;&gt;Delete a cell from a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/delete/{tableRowPath}/cells/{index}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tableRowPath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table row in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;delete-a-cell-from-a-table-in-a-word-document-usage-examples&#34;&gt;Delete a cell from a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-delete-a-cell-from-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to delete a cell from a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=DeleteTableCellOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=DeleteTableCellOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-delete-a-cell-from-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to delete a cell from a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=DeleteTableCellOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=DeleteTableCellOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=DeleteTableCellOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=DeleteTableCellOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=DeleteTableCellOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=DeleteTableCellOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=DeleteTableCellOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=DeleteTableCellOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=DeleteTableCellOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=DeleteTableCellOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Delete a table from a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/delete/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/delete/</guid>
      <description>
        
        
        &lt;p&gt;Deletes a table from a Word document.&lt;/p&gt;
&lt;h2 id=&#34;delete-a-table-from-a-word-document-rest-api&#34;&gt;Delete a table from a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/delete/{nodePath}/tables/{index}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;delete-a-table-from-a-word-document-usage-examples&#34;&gt;Delete a table from a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-delete-a-table-from-a-word-document-with-curl-or-postman&#34;&gt;How to delete a table from a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=DeleteTableOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=DeleteTableOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-delete-a-table-from-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to delete a table from a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=DeleteTableOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=DeleteTableOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=DeleteTableOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=DeleteTableOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=DeleteTableOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=DeleteTableOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=DeleteTableOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=DeleteTableOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=DeleteTableOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=DeleteTableOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Delete a row from a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/delete-row/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/delete-row/</guid>
      <description>
        
        
        &lt;p&gt;Deletes a row from a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;delete-a-row-from-a-table-in-a-word-document-rest-api&#34;&gt;Delete a row from a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/delete/{tablePath}/rows/{index}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tablePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;delete-a-row-from-a-table-in-a-word-document-usage-examples&#34;&gt;Delete a row from a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-delete-a-row-from-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to delete a row from a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=DeleteTableRowOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=DeleteTableRowOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-delete-a-row-from-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to delete a row from a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=DeleteTableRowOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=DeleteTableRowOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=DeleteTableRowOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=DeleteTableRowOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=DeleteTableRowOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=DeleteTableRowOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=DeleteTableRowOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=DeleteTableRowOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=DeleteTableRowOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=DeleteTableRowOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get a table border in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-border/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-border/</guid>
      <description>
        
        
        &lt;p&gt;Returns a table border in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-a-table-border-in-a-word-document-rest-api&#34;&gt;Get a table border in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{nodePath}/borders/{borderType}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;borderType&lt;/code&gt;&lt;/strong&gt; (required) — border type.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-a-table-border-in-a-word-document-usage-examples&#34;&gt;Get a table border in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-a-table-border-in-a-word-document-with-curl-or-postman&#34;&gt;How to get a table border in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetBorderOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetBorderOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-a-table-border-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get a table border in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetBorderOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetBorderOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetBorderOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetBorderOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetBorderOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetBorderOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetBorderOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetBorderOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetBorderOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetBorderOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get all table borders in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-borders/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-borders/</guid>
      <description>
        
        
        &lt;p&gt;Returns all table borders in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-all-table-borders-in-a-word-document-rest-api&#34;&gt;Get all table borders in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{nodePath}/borders&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-all-table-borders-in-a-word-document-usage-examples&#34;&gt;Get all table borders in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-all-table-borders-in-a-word-document-with-curl-or-postman&#34;&gt;How to get all table borders in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetBordersOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetBordersOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-all-table-borders-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get all table borders in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetBordersOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetBordersOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetBordersOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetBordersOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetBordersOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetBordersOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetBordersOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetBordersOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetBordersOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetBordersOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get all tables in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-all/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-all/</guid>
      <description>
        
        
        &lt;p&gt;Returns all tables in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-all-tables-in-a-word-document-rest-api&#34;&gt;Get all tables in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{nodePath}/tables&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-all-tables-in-a-word-document-usage-examples&#34;&gt;Get all tables in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-all-tables-in-a-word-document-with-curl-or-postman&#34;&gt;How to get all tables in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTablesOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTablesOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-all-tables-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get all tables in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTablesOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTablesOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTablesOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTablesOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTablesOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTablesOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTablesOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTablesOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTablesOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTablesOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get/</guid>
      <description>
        
        
        &lt;p&gt;Returns a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-a-table-in-a-word-document-rest-api&#34;&gt;Get a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{nodePath}/tables/{index}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-a-table-in-a-word-document-usage-examples&#34;&gt;Get a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to get a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTableOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTableOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTableOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTableOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTableOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTableOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTableOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTableOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTableOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTableOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTableOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTableOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get a table cell in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-cell/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-cell/</guid>
      <description>
        
        
        &lt;p&gt;Returns a table cell in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-a-table-cell-in-a-word-document-rest-api&#34;&gt;Get a table cell in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{tableRowPath}/cells/{index}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tableRowPath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table row in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-a-table-cell-in-a-word-document-usage-examples&#34;&gt;Get a table cell in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-a-table-cell-in-a-word-document-with-curl-or-postman&#34;&gt;How to get a table cell in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTableCellOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTableCellOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-a-table-cell-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get a table cell in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTableCellOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTableCellOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTableCellOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTableCellOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTableCellOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTableCellOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTableCellOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTableCellOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTableCellOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTableCellOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get the formatting properties of a table cell in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-cell-format/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-cell-format/</guid>
      <description>
        
        
        &lt;p&gt;Returns the formatting properties of a table cell in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-the-formatting-properties-of-a-table-cell-in-a-word-document-rest-api&#34;&gt;Get the formatting properties of a table cell in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{tableRowPath}/cells/{index}/cellformat&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tableRowPath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table row in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-the-formatting-properties-of-a-table-cell-in-a-word-document-usage-examples&#34;&gt;Get the formatting properties of a table cell in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-the-formatting-properties-of-a-table-cell-in-a-word-document-with-curl-or-postman&#34;&gt;How to get the formatting properties of a table cell in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTableCellFormatOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTableCellFormatOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-the-formatting-properties-of-a-table-cell-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get the formatting properties of a table cell in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTableCellFormatOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTableCellFormatOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTableCellFormatOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTableCellFormatOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTableCellFormatOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTableCellFormatOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTableCellFormatOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTableCellFormatOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTableCellFormatOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTableCellFormatOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get table row in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-row/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-row/</guid>
      <description>
        
        
        &lt;p&gt;Returns table row in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-table-row-in-a-word-document-rest-api&#34;&gt;Get table row in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{tablePath}/rows/{index}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tablePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-table-row-in-a-word-document-usage-examples&#34;&gt;Get table row in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-table-row-in-a-word-document-with-curl-or-postman&#34;&gt;How to get table row in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTableRowOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTableRowOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-table-row-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get table row in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTableRowOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTableRowOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTableRowOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTableRowOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTableRowOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTableRowOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTableRowOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTableRowOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTableRowOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTableRowOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get the formatting properties of a table row in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-row-format/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-row-format/</guid>
      <description>
        
        
        &lt;p&gt;Returns the formatting properties of a table row in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-the-formatting-properties-of-a-table-row-in-a-word-document-rest-api&#34;&gt;Get the formatting properties of a table row in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{tablePath}/rows/{index}/rowformat&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tablePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-the-formatting-properties-of-a-table-row-in-a-word-document-usage-examples&#34;&gt;Get the formatting properties of a table row in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-the-formatting-properties-of-a-table-row-in-a-word-document-with-curl-or-postman&#34;&gt;How to get the formatting properties of a table row in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTableRowFormatOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTableRowFormatOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-the-formatting-properties-of-a-table-row-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get the formatting properties of a table row in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTableRowFormatOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTableRowFormatOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTableRowFormatOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTableRowFormatOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTableRowFormatOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTableRowFormatOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTableRowFormatOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTableRowFormatOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTableRowFormatOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTableRowFormatOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Get table properties in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/get-table-properties/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/get-table-properties/</guid>
      <description>
        
        
        &lt;p&gt;Returns table properties in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;get-table-properties-in-a-word-document-rest-api&#34;&gt;Get table properties in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/get/{nodePath}/tables/{index}/properties&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;get-table-properties-in-a-word-document-usage-examples&#34;&gt;Get table properties in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-get-table-properties-in-a-word-document-with-curl-or-postman&#34;&gt;How to get table properties in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=GetTablePropertiesOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=GetTablePropertiesOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-get-table-properties-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to get table properties in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=GetTablePropertiesOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=GetTablePropertiesOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=GetTablePropertiesOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=GetTablePropertiesOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=GetTablePropertiesOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=GetTablePropertiesOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=GetTablePropertiesOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=GetTablePropertiesOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=GetTablePropertiesOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=GetTablePropertiesOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Reset border properties of a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/reset-border-properties/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/reset-border-properties/</guid>
      <description>
        
        
        &lt;p&gt;Resets border properties of a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;reset-border-properties-of-a-table-in-a-word-document-rest-api&#34;&gt;Reset border properties of a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/delete/{nodePath}/borders/{borderType}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;borderType&lt;/code&gt;&lt;/strong&gt; (required) — border type.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;reset-border-properties-of-a-table-in-a-word-document-usage-examples&#34;&gt;Reset border properties of a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-reset-border-properties-of-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to reset border properties of a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=DeleteBorderOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=DeleteBorderOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-reset-border-properties-of-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to reset border properties of a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=DeleteBorderOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=DeleteBorderOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=DeleteBorderOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=DeleteBorderOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=DeleteBorderOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=DeleteBorderOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=DeleteBorderOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=DeleteBorderOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=DeleteBorderOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=DeleteBorderOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Reset all border properties of a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/reset-border-properties-all/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/reset-border-properties-all/</guid>
      <description>
        
        
        &lt;p&gt;Resets all border properties of a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;reset-all-border-properties-of-a-table-in-a-word-document-rest-api&#34;&gt;Reset all border properties of a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/delete/{nodePath}/borders&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;reset-all-border-properties-of-a-table-in-a-word-document-usage-examples&#34;&gt;Reset all border properties of a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-reset-all-border-properties-of-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to reset all border properties of a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=DeleteBordersOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=DeleteBordersOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-reset-all-border-properties-of-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to reset all border properties of a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=DeleteBordersOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=DeleteBordersOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=DeleteBordersOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=DeleteBordersOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=DeleteBordersOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=DeleteBordersOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=DeleteBordersOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=DeleteBordersOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=DeleteBordersOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=DeleteBordersOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Updates the formatting properties of a table cell in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/update-cell-format/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/update-cell-format/</guid>
      <description>
        
        
        &lt;p&gt;Updates the formatting properties of a table cell in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;updates-the-formatting-properties-of-a-table-cell-in-a-word-document-rest-api&#34;&gt;Updates the formatting properties of a table cell in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/put/{tableRowPath}/cells/{index}/cellformat&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tableRowPath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table row in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;format&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;TableCellFormat&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The properties.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;updates-the-formatting-properties-of-a-table-cell-in-a-word-document-usage-examples&#34;&gt;Updates the formatting properties of a table cell in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-updates-the-formatting-properties-of-a-table-cell-in-a-word-document-with-curl-or-postman&#34;&gt;How to updates the formatting properties of a table cell in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=UpdateTableCellFormatOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=UpdateTableCellFormatOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-updates-the-formatting-properties-of-a-table-cell-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to updates the formatting properties of a table cell in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=UpdateTableCellFormatOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=UpdateTableCellFormatOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=UpdateTableCellFormatOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=UpdateTableCellFormatOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=UpdateTableCellFormatOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=UpdateTableCellFormatOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=UpdateTableCellFormatOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=UpdateTableCellFormatOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=UpdateTableCellFormatOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=UpdateTableCellFormatOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Update the formatting properties of a table row in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/update-row-format/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/update-row-format/</guid>
      <description>
        
        
        &lt;p&gt;Updates the formatting properties of a table row in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;update-the-formatting-properties-of-a-table-row-in-a-word-document-rest-api&#34;&gt;Update the formatting properties of a table row in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/put/{tablePath}/rows/{index}/rowformat&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;tablePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the table in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;format&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;TableRowFormat&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;Table row format.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;update-the-formatting-properties-of-a-table-row-in-a-word-document-usage-examples&#34;&gt;Update the formatting properties of a table row in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-update-the-formatting-properties-of-a-table-row-in-a-word-document-with-curl-or-postman&#34;&gt;How to update the formatting properties of a table row in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=UpdateTableRowFormatOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=UpdateTableRowFormatOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-update-the-formatting-properties-of-a-table-row-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to update the formatting properties of a table row in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=UpdateTableRowFormatOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=UpdateTableRowFormatOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=UpdateTableRowFormatOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=UpdateTableRowFormatOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=UpdateTableRowFormatOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=UpdateTableRowFormatOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=UpdateTableRowFormatOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=UpdateTableRowFormatOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=UpdateTableRowFormatOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=UpdateTableRowFormatOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Update the border properties of a table in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/update-border-properties/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/update-border-properties/</guid>
      <description>
        
        
        &lt;p&gt;Updates the border properties of a table in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;update-the-border-properties-of-a-table-in-a-word-document-rest-api&#34;&gt;Update the border properties of a table in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/put/{nodePath}/borders/{borderType}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;borderType&lt;/code&gt;&lt;/strong&gt; (required) — border type.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;borderProperties&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Border&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;Border properties.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;update-the-border-properties-of-a-table-in-a-word-document-usage-examples&#34;&gt;Update the border properties of a table in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-update-the-border-properties-of-a-table-in-a-word-document-with-curl-or-postman&#34;&gt;How to update the border properties of a table in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=UpdateBorderOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=UpdateBorderOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-update-the-border-properties-of-a-table-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to update the border properties of a table in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=UpdateBorderOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=UpdateBorderOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=UpdateBorderOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=UpdateBorderOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=UpdateBorderOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=UpdateBorderOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=UpdateBorderOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=UpdateBorderOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=UpdateBorderOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=UpdateBorderOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Developer-Guide: Update table properties in a Word document online</title>
      <link>https://docs.aspose.cloud/words/tables/update-properties/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.cloud/words/tables/update-properties/</guid>
      <description>
        
        
        &lt;p&gt;Updates table properties in a Word document.&lt;/p&gt;
&lt;h2 id=&#34;update-table-properties-in-a-word-document-rest-api&#34;&gt;Update table properties in a Word document REST API&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Server&lt;/th&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;https://api.aspose.cloud/v4.0&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;PUT&lt;/td&gt;
&lt;td&gt;&lt;code&gt;/words/online/put/{nodePath}/tables/{index}/properties&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;, where:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;nodePath&lt;/code&gt;&lt;/strong&gt; (required) — the path to the node in the document tree.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;index&lt;/code&gt;&lt;/strong&gt; (required) — object index.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use the following parameters in a REST request:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;loadEncoding&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;password&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don&amp;rsquo;t recommend to use the parameter to pass a plain password for direct call of API.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;encryptedPassword&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;destFileName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionAuthor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;revisionDateTime&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;The date and time to use for revisions.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Use &lt;code&gt;$multipart/form-data&lt;/code&gt; request to combine one or more properties into a single body:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Property Name&lt;/th&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;th&gt;Required/Optional&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;document&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;string(binary)&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;properties&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;TableProperties&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;The properties.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;strong&gt;Note&lt;/strong&gt;: to access this REST API, you need to register and get personal credentials. Use the &amp;lsquo;&lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;Quick Start&lt;/a&gt;&amp;rsquo; guide to go through the procedure in a couple of minutes.
&lt;/div&gt;

&lt;h2 id=&#34;update-table-properties-in-a-word-document-usage-examples&#34;&gt;Update table properties in a Word document usage examples&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.&lt;/p&gt;
&lt;h3 id=&#34;how-to-update-table-properties-in-a-word-document-with-curl-or-postman&#34;&gt;How to update table properties in a Word document with cURL or Postman&lt;/h3&gt;
&lt;p&gt;One of the easiest and fastest ways to call a REST API is to use cURL or Postman:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-1-1&#34;&gt;cURL Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/8a52e648cd36d3e0a7402727561073b6.js?file=UpdateTablePropertiesOnline.curl&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-1&#34; id=&#34;tabs-1-2&#34;  /&gt;
      &lt;label for=&#34;tabs-1-2&#34;&gt;Postman Request&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/894866974db18d27af2a7f67dd929b6f.js?file=UpdateTablePropertiesOnline.json&#34;&gt;&lt;/script&gt;
&lt;p style=&#34;margin-top:-32px;font-size:80%;font-style:italic&#34;&gt;To get a JWT token use these &lt;a href=&#34;https://docs.aspose.cloud/words/words/getting-started/quickstart/&#34;&gt;instructions&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h3 id=&#34;how-to-update-table-properties-in-a-word-document-in-python-java-c-c-javascript-and-other-programming-languages&#34;&gt;How to update table properties in a Word document in Python, Java, C#, C++, JavaScript and other programming languages&lt;/h3&gt;
&lt;p&gt;Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:&lt;/p&gt;
&lt;div data-nosnippet&gt;
    





&lt;nav&gt;
  &lt;div class=&#34;book-tabs nav nav-tabs&#34; id=&#34;nav-tab&#34; role=&#34;tablist&#34;&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-1&#34; checked=&#34;checked&#34; /&gt;
      &lt;label for=&#34;tabs-2-1&#34;&gt;Python&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e26813ced70692c544820cd8011ee7e0.js?file=UpdateTablePropertiesOnline.py&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-2&#34;  /&gt;
      &lt;label for=&#34;tabs-2-2&#34;&gt;Java&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/caede439bfd2e57c3010befe504faff4.js?file=UpdateTablePropertiesOnline.java&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-3&#34;  /&gt;
      &lt;label for=&#34;tabs-2-3&#34;&gt;Node.js&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/a9510e4b51613f1138e7c1ec09634c4a.js?file=UpdateTablePropertiesOnline.js&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-4&#34;  /&gt;
      &lt;label for=&#34;tabs-2-4&#34;&gt;C#&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/374e1e3dd4bca8f696f29d913645f549.js?file=UpdateTablePropertiesOnline.cs&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-5&#34;  /&gt;
      &lt;label for=&#34;tabs-2-5&#34;&gt;PHP&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/e2a72445b96362dc0117f06ab54bb94a.js?file=UpdateTablePropertiesOnline.php&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-6&#34;  /&gt;
      &lt;label for=&#34;tabs-2-6&#34;&gt;C&amp;#43;&amp;#43;&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/49aa5151a094849179bae8672c887a0e.js?file=UpdateTablePropertiesOnline.cpp&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-7&#34;  /&gt;
      &lt;label for=&#34;tabs-2-7&#34;&gt;Go&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=config.json&#34;&gt;&lt;/script&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/625ca80adffd779e8f6e3611551e14d5.js?file=UpdateTablePropertiesOnline.go&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-8&#34;  /&gt;
      &lt;label for=&#34;tabs-2-8&#34;&gt;Ruby&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/339f3835a4c0a536c81ec941de29baf7.js?file=UpdateTablePropertiesOnline.rb&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-9&#34;  /&gt;
      &lt;label for=&#34;tabs-2-9&#34;&gt;Swift&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/790dbd2edd5d36f170732366f52cac4c.js?file=UpdateTablePropertiesOnline.swift&#34;&gt;&lt;/script&gt;
&lt;/div&gt;
      &lt;input type=&#34;radio&#34; class=&#34;toggle&#34; name=&#34;tabs-2&#34; id=&#34;tabs-2-10&#34;  /&gt;
      &lt;label for=&#34;tabs-2-10&#34;&gt;Dart&lt;/label&gt;
      &lt;div class=&#34;book-tabs-content markdown-inner&#34;&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-words-cloud-gists/6aae628cf2b878b78fea177c3171c6bf.js?file=UpdateTablePropertiesOnline.dart&#34;&gt;&lt;/script&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/nav&gt;


&lt;/div&gt;

&lt;h2 id=&#34;see-also&#34;&gt;See Also&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/aspose-words-cloud&#34;&gt;GitHub repository&lt;/a&gt; — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
  </channel>
</rss>
