Version

TableExtentBehavior Enumeration

Enum used to specify how the widths of the table and its columns should be initialized when creating a new table via RichTextDocument.InsertTable method. Note that once the table is created, the end user can still resize its columns in the UI as desired.
Syntax
'Declaration
 
Public Enum TableExtentBehavior 
   Inherits System.Enum
public enum TableExtentBehavior : System.Enum 
Members
MemberDescription
FitColumnsToContentColumn widths will be expanded or contracted as necessary to fit the cell content.
FitTableToWindowCreate the table and distribute widths across columns so that the table spans the the editor's extent.
FixedWidthColumnsTable with each column's width set. Note that the user can still resize the columns in the UI.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also