📄 pdfreader.xml
字号:
<?xml version="1.0"?>
<doc>
<assembly>
<name>PDFReader</name>
</assembly>
<members>
<member name="T:OOGroup.Pdf.PdfObject">
<summary>
Abstract base class for all PDF Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfObject.GetPdfObject(System.String@)">
<summary>
Factory method for PdfObjects.
Tries to parse a given input string into a new instance of PdfObject.
</summary>
<param name="input">The input string to be parsed. Will be consumed.</param>
<returns>A PdfObject on success, null otherwise.</returns>
</member>
<member name="M:OOGroup.Pdf.PdfObject.ParseComment(System.String@)">
<summary>
Tries to parse a PDF comment from the input string.
</summary>
<param name="input">The input string to be parsed. Will be consumed.</param>
<returns>A PdfComment object on success, null otherwise.</returns>
</member>
<member name="T:OOGroup.Pdf.PdfComment">
<summary>
Represents a PDF Comment. See the PDF Reference 3.1.2 Comments.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfComment.#ctor(System.String)">
<summary>
Initializes a new instance of PdfComment.
</summary>
<param name="comment">The comment from which to initialize the object (without the leading '%' character and the trailing newline).</param>
</member>
<member name="M:OOGroup.Pdf.PdfComment.ToString">
<summary>
Returns the string representation of the PdfComment object.
</summary>
<returns>The string representation of the PdfComment object.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfComment.Comment">
<summary>
Gets or sets the value of this PdfComment object.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfNumber">
<summary>
Represents a PDF Numeric object. See the PDF Reference 3.2.2 Numeric Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfNumber.#ctor(System.String)">
<summary>
Initializes a new instance of PdfNumber.
</summary>
<param name="num">The string from which to parse the PdfNumber</param>
</member>
<member name="M:OOGroup.Pdf.PdfNumber.#ctor(System.Double)">
<summary>
Initializes a new instance of PdfNumber.
</summary>
<param name="num">The number from which to initialize the PdfNumber.</param>
</member>
<member name="M:OOGroup.Pdf.PdfNumber.ToString">
<summary>
Returns the string representation of the PdfNumber object.
</summary>
<returns>The string representation of the PdfNumber object.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfNumber.Number">
<summary>
Gets or sets the value of this PdfNumber object.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfDictionary">
<summary>
Represents a PDF Dictionary object. See the PDF Reference 3.2.6 Dictionary Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfDictionary.#ctor(System.String@)">
<summary>
Initializes a new instance of PdfDictionary.
</summary>
<param name="input">The input string from which to parse the PdfDictionary.
Must not contain the leading "<<". Must contain the trailing ">>".
Consumes the PdfDictionary from the input.</param>
</member>
<member name="M:OOGroup.Pdf.PdfDictionary.#ctor(System.Collections.Hashtable)">
<summary>
Initializes a new PdfDictionary object.
</summary>
<param name="dictionary">The Hashtable from which to initialize the PdfDictionary.</param>
</member>
<member name="M:OOGroup.Pdf.PdfDictionary.ToString">
<summary>
Returns the string representation of this PdfDictionary.
</summary>
<returns>The string representation of this PdfDictionary.</returns>
</member>
<member name="M:OOGroup.Pdf.PdfDictionary.SetElement(OOGroup.Pdf.PdfName,OOGroup.Pdf.PdfObject)">
<summary>
Sets an element in the PDF dictionary to the specified value.
</summary>
<remarks>
If there is no element with the specified key in the dictionary, it will be added.
</remarks>
<param name="key">The key.</param>
<param name="objValue">The value.</param>
</member>
<member name="M:OOGroup.Pdf.PdfDictionary.GetElement(OOGroup.Pdf.PdfName)">
<summary>
Returns the value in the PdfDictionary for the specified key.
</summary>
<param name="key">The key.</param>
<returns>A PdfObject or null if there is no value in the PdfDictionary with the specified key.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfDictionary.Dictionary">
<summary>
Gets the Hashtable for the PdfDictionary.
</summary>
</member>
<member name="P:OOGroup.Pdf.PdfDictionary.Item(System.String)">
<summary>
Indexer for the PdfDictionary.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfReference">
<summary>
Represents a PDF Reference object. See the PDF Reference 3.2.9 Indirect Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfReference.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new PdfReference object.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
</member>
<member name="M:OOGroup.Pdf.PdfReference.ToString">
<summary>
Returns the string representation of this object.
</summary>
<returns>"o g R" where o is the object number and g is the generation number.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfReference.ObjectNumber">
<summary>
Gets or sets a value indicating the object number.
</summary>
</member>
<member name="P:OOGroup.Pdf.PdfReference.GenerationNumber">
<summary>
Gets or sets a value indicating the generation number.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfNull">
<summary>
Represents a PDF Null object. See the PDF Reference 3.2.8 Null Object.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfNull.ToString">
<summary>
Returns "null".
</summary>
<returns>The string "null".</returns>
</member>
<member name="T:OOGroup.Pdf.PdfArray">
<summary>
Represents a PDF Array object. See the PDF Reference 3.2.5 Array Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfArray.#ctor(System.String@)">
<summary>
Initializes a new PdfArray object.
</summary>
<param name="input">The input string to be parsed.
Must not contain the leading '['. Must contain the trailing ']'.
The PdfArray is consumed from the input.</param>
</member>
<member name="M:OOGroup.Pdf.PdfArray.#ctor(OOGroup.Pdf.PdfObject[])">
<summary>
Initializes a new PdfArray object.
</summary>
<param name="items">The array of PdfObjects from which to construct the new PdfArray.</param>
</member>
<member name="M:OOGroup.Pdf.PdfArray.ToString">
<summary>
Returns the string representation of this object.
</summary>
<returns>The string representation of this object.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfArray.Elements">
<summary>
Gets the elements of the PdfArray.
</summary>
<value>The elements of the PdfArray.</value>
</member>
<member name="P:OOGroup.Pdf.PdfArray.Item(System.Int32)">
<summary>
Indexer for the PdfArray.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfString">
<summary>
Represents a PDF String object. See the PDF Reference 3.2.3 String Objects.
</summary>
<remarks>
This implementation can parse PDF Strings in either literal or hexadecimal form.
It writes strings always in literal form.
Unicode (UTF-16) Encoding is supported, bytes in PdfDocEncoding are interpreted as Unicode.
Language detection is not supported.
</remarks>
</member>
<member name="M:OOGroup.Pdf.PdfString.#ctor(System.Boolean,System.String@)">
<summary>
Initializes a new instance of PdfString.
</summary>
<param name="hex">Is this string in hexadecimal form?</param>
<param name="input">The string to be parsed into a PdfString object. Must not include the leading '('.
Must include the trailing ')'. Consumes the PDF String object from the input.
</param>
</member>
<member name="M:OOGroup.Pdf.PdfString.#ctor(System.String)">
<summary>
Initializes a new PdfString object.
</summary>
<param name="s">A string from which to initialize the PdfString object.</param>
</member>
<member name="M:OOGroup.Pdf.PdfString.ToString">
<summary>
Returns the encoded representation of the PdfString object. Automatically chooses Unicode or PdfDocEncoding.
Returned string is always in literal format.
</summary>
<returns>The encoded string.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfString.Text">
<summary>
Returns the PdfString as a string.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfName">
<summary>
Represents a PDF Name object. See the PDF Reference 3.2.4 Name Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfName.#ctor(System.String)">
<summary>
Initializes a new PdfName instance.
</summary>
<param name="name">The string to be parsed into a PdfName, e.g. "/AP".</param>
</member>
<member name="M:OOGroup.Pdf.PdfName.ToString">
<summary>
Returns the string representation of this object.
</summary>
<returns>The string representation of this object.</returns>
</member>
<member name="M:OOGroup.Pdf.PdfName.Equals(System.Object)">
<summary>
Determines whether the specified object's value is equal to the current object.
</summary>
<param name="obj">The object to compare with the current object.</param>
<returns></returns>
</member>
<member name="M:OOGroup.Pdf.PdfName.GetHashCode">
<summary>
Returns a hashcode that is determined by the string representation of the PdfName object.
</summary>
<returns>A hashcode for the PdfName object.</returns>
</member>
<member name="T:OOGroup.Pdf.PdfBool">
<summary>
Represents the PDF bool object. See the PDF Reference 3.2.1 Boolean Objects.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfBool.#ctor(System.Boolean)">
<summary>
Initializes a new PdfBool instance.
</summary>
<param name="truthValue">The initial value of the PdfBool object.</param>
</member>
<member name="M:OOGroup.Pdf.PdfBool.ToString">
<summary>
Returns the string representation of this object.
</summary>
<returns>Either "true" or "false".</returns>
</member>
<member name="T:OOGroup.Pdf.PdfField">
<summary>
Represents a form field in a PDF document.
Objects of this class should not be created directly, but rather by instantiating any of its subclasses.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.objectNumber">
<summary>
The object number of this field.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.generationNumber">
<summary>
The generation number of this field.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.fieldDictionary">
<summary>
The field dictionary of this field. See the PDF Reference 8.6.2 Field Dictionaries.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.original">
<summary>
The serialized form of the object after it was parsed.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.APName">
<summary>
The /AP PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.NName">
<summary>
The /N PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.VName">
<summary>
The /V PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.TName">
<summary>
The /T PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.FFName">
<summary>
The /Ff PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.FTName">
<summary>
The /FT PDF Name object.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -