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

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

Creates a Screen anotation to embed media clips
public Annotation ( float llx, float lly, float urx, float ury, string moviePath, string mimeType, bool showOnDisplay ) : 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
moviePath string path to the media clip file
mimeType string mime type of the media
showOnDisplay bool if true play on display of the page
Результат System
        public Annotation(float llx, float lly, float urx, float ury,
            string moviePath, string mimeType, bool showOnDisplay)
            : this(llx, lly, urx, ury)
        {
            annotationtype = SCREEN;
            annotationAttributes[FILE] = moviePath;
            annotationAttributes[MIMETYPE] = mimeType;
            annotationAttributes[PARAMETERS] = new bool[] { false /* embedded */, showOnDisplay };
        }

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 url ) : 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 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