IsCreated Property

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets if the annotation has finished being created by the user.

Namespace: PDFTron.SilverDox.Documents.Annotations
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010

Syntax

C#
public bool IsCreated { get; set; }
Visual Basic
Public Property IsCreated As Boolean
	Get
	Set
Visual C++
public:
property bool IsCreated {
	bool get ();
	void set (bool value);
}

Remarks

This is usually set to true on the first MouseUp event received by OnCreateMouseUp(MouseButtonEventArgs, Boolean). However if the annotation requires multiple mouse clicks to construct (as is the case with a polyline or polygon), then it would not be set to true until the user had, for example, double clicked.

See Also