StamperSetPosition Method (Double, Double, Boolean) |
Sets the horizontal and vertical position of the stamp.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetPosition(
double horizontal_distance,
double vertical_distance,
bool percentage
)
Public Sub SetPosition (
horizontal_distance As Double,
vertical_distance As Double,
percentage As Boolean
)
public:
virtual void SetPosition(
[InAttribute] double horizontal_distance,
[InAttribute] double vertical_distance,
[InAttribute] bool percentage
) sealed
function SetPosition(horizontal_distance, vertical_distance, percentage);
Parameters
- horizontal_distance
- Type: SystemDouble
Horizontal distance from left, right or center of crop box
- vertical_distance
- Type: SystemDouble
the vertical_distance
- percentage
- Type: SystemBoolean
If true, horizontal_distance is a percentage of the crop
box width (e.g.: 0.5 is 50% of the width of the crop box) and vertical_distance
is a percentage of the crop box height. If false, horizontal_distance and
vertical_distance is measured in points.
See Also