📄 pdfreader.xml
字号:
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.TXName">
<summary>
The /Tx PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.CHName">
<summary>
The /Ch PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.ButtonName">
<summary>
The /Btn PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.KidsName">
<summary>
The /Kids PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.AAName">
<summary>
The /AA PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.TMName">
<summary>
The /TM PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.TUName">
<summary>
The /TU PDF Name object.
</summary>
</member>
<member name="F:OOGroup.Pdf.PdfField.ParentName">
<summary>
The /Parent PDF Name object.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="M:OOGroup.Pdf.PdfField.GetPdfFields(OOGroup.Pdf.PdfReference,OOGroup.Pdf.PdfReader,OOGroup.Pdf.PdfDictionary,System.String)">
<summary>
Factory method for PdfField objects.
Initializes new objects according to the contents of the specified field dictionary.
Does not currently support signature fields.
In most cases, this will return just one object. However, fields are organized according
to trees, where intermediate field objects may have child fields. Only terminal field objects
are "real" fields, so this method may return more than one field.
</summary>
<param name="reference">The reference to the root node of the fields.</param>
<param name="reader">The PdfReader object from which to fetch additional child objects.</param>
<param name="parentDictionary">The accumulated field dictionary of the ancestor objects.
May be null for the root object.</param>
<param name="fieldName">The complete field name up to this object, e.g. "a.b.c".</param>
<returns>A new PdfField object.</returns>
<exception cref="T:System.Exception">Thrown when the field dictionary does not contain
a known field type.</exception>
</member>
<member name="M:OOGroup.Pdf.PdfField.HasChanged">
<summary>
Returns true if changes were made to the field after it was created.
</summary>
<returns>true if there are changes.</returns>
</member>
<member name="M:OOGroup.Pdf.PdfField.ToString">
<summary>
Returns the string representation of this form field.
</summary>
<returns>The string representation of this form field.</returns>
</member>
<member name="F:OOGroup.Pdf.PdfField.completeFieldName">
<summary>
The complete field name.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfField.GetBit(System.Int32)">
<summary>
Returns the bit at the specified position in the field flags of this field.
</summary>
<param name="bitPosition">The bit position starting at 1.</param>
<returns>true if the bit's value is 1.</returns>
</member>
<member name="M:OOGroup.Pdf.PdfField.SetBit(System.Int32,System.Boolean)">
<summary>
Sets the bit at the specified position in the field flags of this field.
</summary>
<param name="bitPosition">The bit position starting at 1.</param>
<param name="bit">true to set the bit's value to 1.</param>
</member>
<member name="P:OOGroup.Pdf.PdfField.ObjectNumber">
<summary>
The object number of this field.
</summary>
</member>
<member name="P:OOGroup.Pdf.PdfField.GenerationNumber">
<summary>
The generation number of this field.
</summary>
</member>
<member name="P:OOGroup.Pdf.PdfField.FieldDictionary">
<summary>
The field dictionary of this field. See the PDF Reference 8.6.2 Field Dictionaries.
</summary>
</member>
<member name="P:OOGroup.Pdf.PdfField.Name">
<summary>
Gets or sets the name of this field. This is not the complete field name, just the local part,
e.g. "c" where the complete field name is "a.b.c".
</summary>
<value>The name of this form field.</value>
</member>
<member name="P:OOGroup.Pdf.PdfField.FieldName">
<summary>
Gets or Sets the complete field name.
</summary>
</member>
<member name="T:OOGroup.Pdf.PdfButtonField">
<summary>
Represents a generic Button form field in a PDF document.
Instances of this class should not be created through the constructor but instead through the factory
method <see cref="M:OOGroup.Pdf.PdfButtonField.GetButtonField(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)"/>.
See the PDF reference 8.6.3 Field Types.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfButtonField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfButtonField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="M:OOGroup.Pdf.PdfButtonField.GetButtonField(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Creates either a <see cref="T:OOGroup.Pdf.PdfPushButtonField"/>, <see cref="T:OOGroup.Pdf.PdfRadioButtonField"/>, or a
<see cref="T:OOGroup.Pdf.PdfCheckBoxField"/> according to the parsed field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
<returns></returns>
</member>
<member name="M:OOGroup.Pdf.PdfButtonField.IsRadioButton(OOGroup.Pdf.PdfDictionary)">
<summary>
Determines whether the object specified is a RadioButton.
</summary>
<param name="fieldDictionary">The object's field dictionary.</param>
<returns>true if the object specified is a RadioButton, false otherwise.</returns>
</member>
<member name="M:OOGroup.Pdf.PdfButtonField.IsButton(OOGroup.Pdf.PdfDictionary)">
<summary>
Determines whether the object specified is a Button.
</summary>
<param name="fieldDictionary">The object's field dictionary.</param>
<returns>true if the object specified is a Button, false otherwise.</returns>
</member>
<member name="T:OOGroup.Pdf.PdfPushButtonField">
<summary>
Represents a PushButton form field in a PDF document.
See the PDF reference 8.6.3 Field Types.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfPushButtonField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfPushButtonField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="T:OOGroup.Pdf.PdfRadioButtonField">
<summary>
Represents a set of RadioButton form fields in a PDF document.
See the PDF reference 8.6.3 Field Types.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfRadioButtonField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfRadioButtonField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="P:OOGroup.Pdf.PdfRadioButtonField.SelectedItem">
<summary>
Gets or sets a value indicating the selected RadioButton.
</summary>
<value>The name of the selected RadioButton (without the leading '/').</value>
</member>
<member name="P:OOGroup.Pdf.PdfRadioButtonField.NoToggleToOff">
<summary>
Gets or sets a value indicating if it is possible that no RadioButton is selected.
</summary>
<value>true if it is not possible that no RadioButton is selected.</value>
</member>
<member name="T:OOGroup.Pdf.PdfCheckBoxField">
<summary>
Represents a CheckBox form field in a PDF document.
See the PDF reference 8.6.3 Field Types.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfCheckBoxField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfCheckBoxField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="P:OOGroup.Pdf.PdfCheckBoxField.Checked">
<summary>
Gets or sets a value indicating whether the CheckBox is checked.
</summary>
<value>true is the CheckBox is checked.</value>
</member>
<member name="T:OOGroup.Pdf.PdfTXField">
<summary>
Represents a Text form field in a PDF document, i.e. either a ListBox or a ComboBox.
See the PDF reference 8.6.3 Field Types.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfTXField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfTXField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="P:OOGroup.Pdf.PdfTXField.Text">
<summary>
Gets or sets a value indicating the text that is displayed in the field.
</summary>
</member>
<member name="P:OOGroup.Pdf.PdfTXField.MultiLine">
<summary>
Gets or sets a value indicating whether the field allows more than one line of input.
</summary>
<value>true if more than one line of input is allowed.</value>
</member>
<member name="P:OOGroup.Pdf.PdfTXField.Password">
<summary>
Gets or sets a value indicating whether the text should be visibly echoed
or instead rendered in a non-readable form such as asterisks or bullets.
</summary>
<value>true if the text should not be visibly echoed.</value>
</member>
<member name="P:OOGroup.Pdf.PdfTXField.FileSelect">
<summary>
Gets or sets a value indicating whether this field represents the pathname of
a file whose contents are to be submitted as the value of the field.
</summary>
<value>true if this field represents the pathname of a file.</value>
</member>
<member name="P:OOGroup.Pdf.PdfTXField.DoNotSpellCheck">
<summary>
Gets or sets a value indicating whether spellchecking should be enabled.
</summary>
<value>true if no spell checking is performed.</value>
</member>
<member name="P:OOGroup.Pdf.PdfTXField.DoNotScroll">
<summary>
Gets or sets a value indicating if scrolling is allowed.
</summary>
<value>true if this field should not allow scrolling.</value>
</member>
<member name="T:OOGroup.Pdf.PdfCHField">
<summary>
Represents a Choice form field in a PDF document, i.e. either a ListBox or a ComboBox.
See the PDF reference 8.6.3 Field Types.
</summary>
</member>
<member name="M:OOGroup.Pdf.PdfCHField.#ctor(System.Int32,System.Int32,OOGroup.Pdf.PdfDictionary)">
<summary>
Initializes a new instance of PdfCHField with the specified object number, generation number,
and field dictionary.
</summary>
<param name="objNumber">The object number.</param>
<param name="generationNumber">The generation number.</param>
<param name="fieldDictionary">The field dictionary.</param>
</member>
<member name="M:OOGroup.Pdf.PdfCHField.SetSelectedIndexes(System.Int32[])">
<summary>
Sets the indexes of the items that should appear selected.
</summary>
<param name="indexes">The selected indexes.</param>
</member>
<member name="M:OOGroup.Pdf.PdfCHField.GetSelectedIndexes">
<summary>
Gets the indexes of the items that should appear selected.
</summary>
<returns>An array of index that are selected.</returns>
</member>
<member name="P:OOGroup.Pdf.PdfCHField.Combo">
<summary>
Gets or sets a value indicating whether this field should be rendered as a ComboBox or a ListBox.
</summary>
<value>true if the field should be rendered as ComboBox.</value>
</member>
<member name="P:OOGroup.Pdf.PdfCHField.Edit">
<summary>
Gets or sets a value indicating whether the ComboBox includes an editable text box as well as a drop list.
This property is meaningful only if the Combo property is set to true.
</summary>
<value>true if the ComboBox should include an editable text box.</value>
</member>
<member name="P:OOGroup.Pdf.PdfCHField.Sort">
<summary>
Gets or sets a value indicating whether the fields elements are sorted alphabetically.
</summary>
<value>true if the elements are sorted alphabetically.</value>
</member>
<member name="P:OOGroup.Pdf.PdfCHField.MultiSelect">
<summary>
Gets or sets a value indicating if more than one element is selectable.
</summary>
<value>true if more than one element is selectable.</value>
</member>
<member name="P:OOGroup.Pdf.PdfCHField.DoNotSpellCheck">
<summary>
Gets or sets a value indicating whether spellchecking should be enabled.
This flag is meaningful only if the Combo and Edit flags are both set.
</summary>
<value>true if no spell checking is performed.</value>
</member>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -