status = page:SetDash([pattern, phase])
page:SetDash() sets the dash pattern for lines in the page.
pattern needs to be a table containing between 0 and 8 elements
of dashes and gaps. When called without parameters, line dashing will be
disabled.
Here are some common patterns:
page:SetDash({3}, 1)
page:SetDash({7,3}, 2)
page:SetDash({8,7,2,7}, 0)
|