| SignDocDocumentcreateFreeTextAnnotation Method (Double, Double, Double, Double) |
Create a text annotation.
See SignDocAnnotation for details.
This function uses document (page) coordinates,
see @ref signdocshared_coordinates.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic SignDocAnnotation createFreeTextAnnotation(
double x0,
double y0,
double x1,
double y1
)
Public Function createFreeTextAnnotation (
x0 As Double,
y0 As Double,
x1 As Double,
y1 As Double
) As SignDocAnnotation
public:
SignDocAnnotation^ createFreeTextAnnotation(
double x0,
double y0,
double x1,
double y1
)
member createFreeTextAnnotation :
x0 : float *
y0 : float *
x1 : float *
y1 : float -> SignDocAnnotation
Parameters
- x0
- Type: SystemDouble
X coordinate of lower left corner. - y0
- Type: SystemDouble
Y coordinate of lower left corner. - x1
- Type: SystemDouble
X coordinate of upper right corner. - y1
- Type: SystemDouble
Y coordinate of upper right corner.
Return Value
Type:
SignDocAnnotation The new annotation object.
See Also