Apitron.PDF.Kit library for .NET
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Initializes a new instance of the TextAnnotation class.
Namespace: Apitron.PDF.Kit.Interactive.Annotations
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax
public StateAnnotation( Annotation replyTo, AnnotationReplyType replyType = AnnotationReplyType.Single, AnnotationState state = AnnotationState.None )
Parameters
- replyTo
- Type: Apitron.PDF.Kit.Interactive.AnnotationsAnnotation
The reply on annotation. - replyType (Optional)
- Type: Apitron.PDF.Kit.Interactive.AnnotationsAnnotationReplyType
Type of the reply. - state (Optional)
- Type: Apitron.PDF.Kit.Interactive.AnnotationsAnnotationState
The state.
Examples
C#
// you already have replyAnnotation. StateAnnotation setMarkedToReply = new StateAnnotation(replyAnnotation, AnnotationReplyType.Single, AnnotationState.Marked);
See Also