> For the complete documentation index, see [llms.txt](https://xojo.gitbook.io/add-ons/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xojo.gitbook.io/add-ons/ftc-word-exporter/general-information.md).

# General Information

## Known issues

The Formatted Text Control offers besides the `DefaultTabstop` value within the FormattedText class also the possibility to add user-defined tabstops with a different width than the DefaultTabstop value to paragraphs. Use the `FTParagraph.addTabStop` method. This also works perfectly. However, not only the user-defined values are written to the XML file when saving, but also automatically generated values whose "default" property is set to "true".

This can be quickly remedied. Just put the lines 44/45 in `FTParagraph.getXML`

```xojo
// Encode the tab stop
sa.Append(str(tabStops(i).getTabType) + _
  TABSTOP_SEPARATOR + str(tabStops(i).getTabStop))
```

by

```xojo
If Not tabStops(i).default Then
  // Encode the tab stop
  sa.Append(str(tabStops(i).getTabType) + _
    TABSTOP_SEPARATOR + str(tabStops(i).getTabStop))
End If
```

replace. This really only writes the user-defined tabstops to the file and reloads them. It also reduces the size of the XML file.

## How to purchase?

Just write me a private message at the Xojo Forum (<https://forum.xojo.com/u/martin_t>) with your valid e-Mail Address. I’ll sent you the invoice about **35 €** and after purchasing via PayPal you’ll get the unencrypted source code.

## License Information

Each single user (computer) needs a separate license. It is not allowed to use the addon on different workstations (computers).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://xojo.gitbook.io/add-ons/ftc-word-exporter/general-information.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
