From 95556e57df518c534422f95067369e25f1b6519e Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Thu, 4 Mar 2021 02:08:09 +0000 Subject: [PATCH] Write documentation on vidi visual --- docs/usage/tables.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/usage/tables.md b/docs/usage/tables.md index 8d10b55ca3..637efa2977 100644 --- a/docs/usage/tables.md +++ b/docs/usage/tables.md @@ -326,6 +326,17 @@ const cell = new TableCell({ }); ``` +### Visual Right to Left Table + +It is possible to reverse how the cells of the table are displayed. The table direction. More info here: https://superuser.com/questions/996912/how-to-change-a-table-direction-in-microsoft-word + +```ts +const table = new Table({ + visuallyRightToLeft: true, +}); +``` + + ## Examples [Example](https://raw.githubusercontent.com/dolanmiu/docx/master/demo/4-basic-table.ts ':include')