public static void SetTabLength(this ITextDocument document, int length)
        {
            document.DefaultTabStop = length * 3; // Each space has an approximate width of 3 points

            ITextParagraphFormat format = document.GetDefaultParagraphFormat();

            format.ClearAllTabs();

            document.SetDefaultParagraphFormat(format);
        }