Table.RelativeHorizontalPosition Property
Gets or sets to what the table’s horizontal position is relative.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Property Value
Type | Description |
---|---|
TableRelativeHorizontalPosition | An enumeration value that indicates the element to which the table is aligned (horizontal position). |
Available values:
Name | Description |
---|---|
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:
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();
}
Related GitHub Examples
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.