SetTopMargin
function SetTopMargin(nPoints: number = null): void
Description
Sets the top margin of the sheet.
Parameters
- nPoints
number
null The top margin size measured in points.
Returns
void
Try It
var oWorksheet = Api.GetActiveSheet();
oWorksheet.SetTopMargin(25.1);
var nTopMargin = oWorksheet.GetTopMargin();
oWorksheet.GetRange("A1").SetValue("Top margin: " + nTopMargin + " mm");