STSignatureAddPoint Method (STSignaturePoint, Int32, Int32, Boolean) | |
Adds a STSignaturePoint to the current signature
Namespace: Scriptel.STSeriesAssembly: STSeries (in STSeries.dll) Version: 2.5.0.454 (2.5.0.454)
Syntax public void AddPoint(
STSignaturePoint signaturePoint,
int stroke,
int pointInStroke,
bool isBeforeLocation
)
Public Sub AddPoint (
signaturePoint As STSignaturePoint,
stroke As Integer,
pointInStroke As Integer,
isBeforeLocation As Boolean
)
public:
void AddPoint(
STSignaturePoint^ signaturePoint,
int stroke,
int pointInStroke,
bool isBeforeLocation
)
member AddPoint :
signaturePoint : STSignaturePoint *
stroke : int *
pointInStroke : int *
isBeforeLocation : bool -> unit
Parameters
- signaturePoint
- Type: Scriptel.STSeriesSTSignaturePoint
The signature pointNumber information to be added to the signature at the selected location - stroke
- Type: SystemInt32
The positive, 1 based array index of the stroke of the signature to which to add the signature pointNumber - pointInStroke
- Type: SystemInt32
The positive, 1 based array index of the pointNumber in the selected line segment to which to add the signature pointNumber - isBeforeLocation
- Type: SystemBoolean
If True, the signature pointNumber is inserted into the current signature before the pointNumber that is currently in the given location
If False, the signature pointNumber is inserted into the current signature after the pointNumber that is currently in the given location
Exceptions Exception | Condition |
---|
STValueOutOfRangeException | the signaturePoint is null, or stroke does not exist in the Signature, or the pointNumber does not reference a pointNumber within the stroke |
See Also