Back to Devexpress

SectionMargins.Bottom Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-sectionmargins-f7769b6f.md

latest3.2 KB
Original Source

SectionMargins.Bottom Property

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

Declaration

csharp
float Bottom { get; set; }
vb
Property Bottom As Single

Property Value

TypeDescription
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

csharp
_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

csharp
_section.Margins.Top = 50f;
    _section.Margins.Bottom = 50f;
}

word-document-api-print-documents/VB/Program.vb#L21

vb
_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

vb
_section.Margins.Top = 50.0F
    _section.Margins.Bottom = 50.0F
Next

See Also

SectionMargins Interface

SectionMargins Members

DevExpress.XtraRichEdit.API.Native Namespace