aspnetcore-js-devexpress-dot-richedit-827cc746.md
Contains margin settings.
export class Margins
var marginSize = richEdit.unitConverter.centimetersToTwips(1);
var margins = new DevExpress.RichEdit.Margins(
marginSize, marginSize, marginSize, marginSize);
richEdit.document.sections.getByIndex(0).margins = margins;
The margin value for the bottom edge.
bottom: number
| Type | Description |
|---|---|
| number |
The margin value, in twips.
|
The margin value for the left edge.
left: number
| Type | Description |
|---|---|
| number |
The margin value, in twips.
|
The margin value for the right edge.
right: number
| Type | Description |
|---|---|
| number |
The margin value, in twips.
|
The margin value for the top edge.
top: number
| Type | Description |
|---|---|
| number |
The margin value, in twips.
|