Interface IMarginLTRB
A structure representing left, top, right, and bottom margins.
Package: @aurigma/design-editor-iframe
Remarks
ISafetyLine uses this structure.
Examples
margin: {
left: 20,
top: 10,
right:10,
bottom: 10
}
Properties
bottom
The bottom margin.
Declaration
bottom: number;
Property Value
| Type | Description |
|---|---|
| number | The bottom margin. |
left
The left margin.
Declaration
left: number;
Property Value
| Type | Description |
|---|---|
| number | The left margin. |
right
The right margin.
Declaration
right: number;
Property Value
| Type | Description |
|---|---|
| number | The right margin. |
top
The top margin.
Declaration
top: number;
Property Value
| Type | Description |
|---|---|
| number | The top margin. |