officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-sectionmargins-f7769b6f.md
Gets or sets a value that specifies the bottom margin.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
float Bottom { get; set; }
Property Bottom As Single
| Type | Description |
|---|---|
| Single |
A Single value that specifies the bottom margin in current measure units.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Bottom 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.
word-document-api-print-documents/CS/Program.cs#L33
_section.Margins.Top = 200f;
_section.Margins.Bottom = 200f;
_section.PageNumbering.NumberingFormat = NumberingFormat.CardinalText;
word-document-api-use-printablecomponentlink-to-print-document/CS/PrintingSystem/Form1.cs#L46
_section.Margins.Top = 50f;
_section.Margins.Bottom = 50f;
}
word-document-api-print-documents/VB/Program.vb#L21
_section.Margins.Top = 200.0F
_section.Margins.Bottom = 200.0F
_section.PageNumbering.NumberingFormat = NumberingFormat.CardinalText
word-document-api-use-printablecomponentlink-to-print-document/VB/PrintingSystem/Form1.vb#L46
_section.Margins.Top = 50.0F
_section.Margins.Bottom = 50.0F
Next
See Also