PDFViewCtrlSetPageSpacing Method |
Sets the vertical and horizontal padding and column spacing between adjacent pages in the view.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetPageSpacing(
int horiz_space,
int vert_space,
int horiz_pad,
int vert_pad
)
Public Sub SetPageSpacing (
horiz_space As Integer,
vert_space As Integer,
horiz_pad As Integer,
vert_pad As Integer
)
public:
virtual void SetPageSpacing(
[InAttribute] int horiz_space,
[InAttribute] int vert_space,
[InAttribute] int horiz_pad,
[InAttribute] int vert_pad
) sealed
function SetPageSpacing(horiz_space, vert_space, horiz_pad, vert_pad);
Parameters
- horiz_space
- Type: SystemInt32
horizontal column spacing (represented in pixels) between adjacent pages in the view. Default is 3.
- vert_space
- Type: SystemInt32
vertical column spacing (represented in pixels) between adjacent pages in the view. Default is 3.
- horiz_pad
- Type: SystemInt32
horizontal padding (represented in pixels) on the left and right side of the view. Default is 3.
- vert_pad
- Type: SystemInt32
vertical padding (represented in pixels) on the top and bottom side of the view. Default is 3.
See Also