Constructs an Annotation.

Namespace: iTextSharp.text
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public Annotation(
	float llx,
	float lly,
	float urx,
	float ury,
	string application,
	string parameters,
	string operation,
	string defaultdir
)
Visual Basic
Public Sub New ( _
	llx As Single, _
	lly As Single, _
	urx As Single, _
	ury As Single, _
	application As String, _
	parameters As String, _
	operation As String, _
	defaultdir As String _
)
Visual C++
public:
Annotation(
	float llx, 
	float lly, 
	float urx, 
	float ury, 
	String^ application, 
	String^ parameters, 
	String^ operation, 
	String^ defaultdir
)

Parameters

llx
Type: System..::..Single
the lower left x-value
lly
Type: System..::..Single
the lower left y-value
urx
Type: System..::..Single
the upper right x-value
ury
Type: System..::..Single
the upper right y-value
application
Type: System..::..String
an external application
parameters
Type: System..::..String
parameters to pass to this application
operation
Type: System..::..String
the operation to pass to this application
defaultdir
Type: System..::..String
the default directory to run this application in

See Also