Calculate the Width of the Gray Area in PageView Mode
Calculate the gray area dimensions in TX Text Control PageView mode to position overlay elements precisely. The vertical page gap is fixed at 567 twips, while the horizontal offset is derived by subtracting the page width and scrollbar width from the total control width, then halving.

Sometimes it is neccessary to display an element over TX Text Control at a specific position. In the ViewMode PageView, there is a gap between the pages and the left and right TX Text Control border.
The gap between the pages is 1 cm (0.39 inch), which is 567 twips.
The left and right gap is not more tricky. The page is always centered, so that you just have to subtract the page width from the TX Text Control control width.
Additionally, the width of a scrollbar should be included, if a vertical scrollbar has been enabled. This result must be divided by 2 to get the gap between the TX Text Control border and the beginning of the document.
Dim verticalGap As Integer
Dim scrollBarWidth As Integer = 0
If TextControl1.ScrollBars.Vertical = ScrollBars.Vertical Then
scrollBarWidth = 16
End If
verticalGap = (TextControl1.Width - TextControl1.PageSize.Width + scrollBarWidth) / 2Related Posts
Create a Table of Contents in Windows Forms using C#
This article explains how to create a table of contents in Windows Forms using the ribbon or programmatically. Creating a table of contents is required to organize large documents.
Two Ways to Restart Numbered Lists in TX Text Control
In TX Text Control, numbered lists are continued by default and need to be reset when required. There is more than one way if you want to restart numbered lists in a document. In this article, two…
Paste Special: The Easy Way to Implement
TX Text Control version 15.0 introduced a ClipboardFormat parameter on the Paste method, enabling native Paste Special functionality. The GetClipboardFormats method returns all available clipboard…
How to Remove All Section Breaks in a Document?
TX Text Control 15.0 adds per-section page column support alongside existing section breaks. To remove all section breaks programmatically, iterate through SectionCollection using…
Batch Printing: How to Print Documents in One Print Job
Batch printing multiple documents as a single print job using TX Text Control relies on a .NET PrintDocument with PrintPage and QueryPageSettings events. Each page is rendered individually via the…
