Back to Devexpress

Table.RelativeHorizontalPosition Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-table-021337c1.md

latest8.1 KB
Original Source

Table.RelativeHorizontalPosition Property

Gets or sets to what the table’s horizontal position is relative.

Namespace : DevExpress.XtraRichEdit.API.Native

Assembly : DevExpress.RichEdit.v25.2.Core.dll

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
TableRelativeHorizontalPosition RelativeHorizontalPosition { get; set; }
vb
Property RelativeHorizontalPosition As TableRelativeHorizontalPosition

Property Value

TypeDescription
TableRelativeHorizontalPosition

An enumeration value that indicates the element to which the table is aligned (horizontal position).

|

Available values:

NameDescription
Margin

The table is positioned relative to page margins.

| | Page |

The table position is relative to a page.

| | Column |

The table position is relative to a column.

|

Remarks

Use the RelativeHorizontalPosition to specify the relative element for Table.HorizontalAlignment and Table.OffsetXRelative property values.

The property is in effect for tables with Table.TextWrappingType set to TableTextWrappingType.Around.

The code sample below shows how to specify the table’s relative horizontal alignment:

csharp
using DevExpress.XtraRichEdit;
using DevExpress.XtraRichEdit.API.Native;

using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
{
  Document document = wordProcessor.Document;
  Table table = document.Tables[0];
  table.BeginUpdate();
  //Wrap text around the table
  table.TextWrappingType = TableTextWrappingType.Around;

  //Specify horizontal alignment:
  table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin;
  table.HorizontalAlignment = TableHorizontalAlignment.Center;

  table.EndUpdate();
}
vb
Imports DevExpress.XtraRichEdit
Imports DevExpress.XtraRichEdit.API.Native

Using wordProcessor As New RichEditDocumentServer()
  Dim document As Document = wordProcessor.Document
  Dim table As Table = document.Tables(0)
  table.BeginUpdate()
  'Wrap text around the table
  table.TextWrappingType = TableTextWrappingType.Around

  'Specify horizontal alignment:
  table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin
  table.HorizontalAlignment = TableHorizontalAlignment.Center

  table.EndUpdate()
End Using

The following code snippets (auto-collected from DevExpress Examples) contain references to the RelativeHorizontalPosition property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-richedit-document-api/CS/RichEditAPISample/CodeExamples/Table.cs#L277

csharp
//Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin;
table.HorizontalAlignment = TableHorizontalAlignment.Center;

wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/TableActions.cs#L280

csharp
//Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin;
table.HorizontalAlignment = TableHorizontalAlignment.Center;

winforms-richedit-tables-simple-example/CS/TablesSimpleExample/Form1.cs#L91

csharp
// Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin;
table.HorizontalAlignment = TableHorizontalAlignment.Center;

word-document-api-examples/CS/CodeExamples/TablesActions.cs#L390

csharp
// Specify horizontal alignment.
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin;
table.HorizontalAlignment = TableHorizontalAlignment.Center;

word-document-api-table-examples/CS/Program.cs#L226

csharp
//Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin;
table.HorizontalAlignment = TableHorizontalAlignment.Center;

winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/Table.vb#L248

vb
'Specify horizontal alignment:
table.RelativeHorizontalPosition = DevExpress.XtraRichEdit.API.Native.TableRelativeHorizontalPosition.Margin
table.HorizontalAlignment = DevExpress.XtraRichEdit.API.Native.TableHorizontalAlignment.Center

wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/TableActions.vb#L249

vb
'Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin
table.HorizontalAlignment = TableHorizontalAlignment.Center

winforms-richedit-tables-simple-example/VB/TablesSimpleExample/Form1.vb#L74

vb
' Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin
table.HorizontalAlignment = TableHorizontalAlignment.Center

word-document-api-examples/VB/CodeExamples/TablesActions.vb#L330

vb
' Specify horizontal alignment.
table.RelativeHorizontalPosition = DevExpress.XtraRichEdit.API.Native.TableRelativeHorizontalPosition.Margin
table.HorizontalAlignment = DevExpress.XtraRichEdit.API.Native.TableHorizontalAlignment.Center

word-document-api-table-examples/VB/Program.vb#L182

vb
'Specify horizontal alignment:
table.RelativeHorizontalPosition = TableRelativeHorizontalPosition.Margin
table.HorizontalAlignment = TableHorizontalAlignment.Center

See Also

Table Interface

Table Members

DevExpress.XtraRichEdit.API.Native Namespace