iTextSharp.text.Annotation.Annotation C# (CSharp) Метод

Annotation() публичный Метод

Constructs an Annotation.
public Annotation ( float llx, float lly, float urx, float ury, string url ) : System
llx float the lower left x-value
lly float the lower left y-value
urx float the upper right x-value
ury float the upper right y-value
url string the external reference
Результат System
        public Annotation(float llx, float lly, float urx, float ury, string url)
            : this(llx, lly, urx, ury)
        {
            annotationtype = URL_AS_STRING;
            annotationAttributes[FILE] = url;
        }

Same methods

Annotation::Annotation ( Annotation an ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury, Uri url ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury, int named ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury, string file, int page ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury, string file, string dest ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury, string moviePath, string mimeType, bool showOnDisplay ) : System
Annotation::Annotation ( float llx, float lly, float urx, float ury, string application, string parameters, string operation, string defaultdir ) : System
Annotation::Annotation ( string title, string text ) : System
Annotation::Annotation ( string title, string text, float llx, float lly, float urx, float ury ) : System