| Maptitude GISDK Help |
Gets the current print margin settings.
print_margins = GetPrintMargins()
An array of integers specifying the size of each margin, according to the table below:
| Element | Type | Contents |
|---|---|---|
| 1 | Integer | The left margin |
| 2 | Integer | The top margin |
| 3 | Integer | The right margin |
| 4 | Integer | The bottom margin |
The margin values are in hundreths of a point.
// These statements increase all the margins by 0.5 inches
mrgn = GetPrintMargins()
SetPrintMargins(mrgn[1] + 3600, mrgn[2] + 3600, mrgn[3] + 3600, mrgn[4] + 3600)
| Function | Summary |
|---|---|
| SetPrintMargins() | Set the left, top, right, and bottom printing margin settings |
| ©2025 Caliper Corporation | www.caliper.com |