📄 symbol.printing.xml
字号:
</summary>
</member>
<member name="T:Symbol.Printing.PrintPageEventArgs">
<summary>
Provides data for the <see cref="E:Symbol.Printing.PrintDocument.PrintPage"/> event.
</summary>
<remarks>
The <see cref="P:Symbol.Printing.PrintPageEventArgs.SymbolGraphics"/> property provides access to the graphics object with which to do the painting.
The <see cref="P:Symbol.Printing.PrintPageEventArgs.HasMorePages"/> property allows you to specify if the current page is the last page of the document.
The <see cref="P:Symbol.Printing.PrintPageEventArgs.Cancel"/> property allows you to cancel the printing of the current document.
</remarks>
</member>
<member name="M:Symbol.Printing.PrintPageEventArgs.#ctor(Symbol.Printing.SymbolGraphics)">
<summary>
Initializes a new instance of PrintPageEventArgs.
</summary>
<param name="symbolGraphics">A SymbolGraphics object used to paint the page.</param>
</member>
<member name="P:Symbol.Printing.PrintPageEventArgs.SymbolGraphics">
<summary>
Gets the SymbolGraphics object used to paint the page.
</summary>
<value>The SymbolGraphics object used to paint the page.</value>
</member>
<member name="P:Symbol.Printing.PrintPageEventArgs.Cancel">
<summary>
Gets or sets a value indicating whether the print job should be canceled.
</summary>
<value>true if the print job should be canceled; otherwise, false.</value>
</member>
<member name="P:Symbol.Printing.PrintPageEventArgs.HasMorePages">
<summary>
Gets or sets a value indicating whether an additional page should be printed.
</summary>
<value>true if an additional page should be printed; otherwise, false. The default is false.</value>
</member>
<member name="T:Symbol.Printing.PrintEventArgs">
<summary>
This class Provides data for the BeginPrint and EndPrint events.
</summary>
<remarks>
PrintEventArgs.Cancel property allows you to cancel the printing of the current document.
</remarks>
</member>
<member name="T:Symbol.Printing.PrintEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Symbol.Printing.PrintDocument.BeginPrint"/> or <see cref="E:Symbol.Printing.PrintDocument.EndPrint"/> event of a <see cref="T:Symbol.Printing.PrintDocument"/>
</summary>
<remarks>
When you create a PrintEventHandler delegate, you identify the method that
will handle the event. To associate the event with your event handler, add
an instance of the delegate to the event. The event handler is called
whenever the event occurs, unless you remove the delegate.
</remarks>
</member>
<member name="T:Symbol.Printing.PrintPageEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Symbol.Printing.PrintDocument.PrintPage"/> event of a <see cref="T:Symbol.Printing.PrintDocument"/>
</summary>
<remarks>
When you create a PrintPageEventHandler delegate, you identify the method
that will handle the event. To associate the event with your event handler,
add an instance of the delegate to the event. The event handler is called
whenever the event occurs, unless you remove the delegate.
</remarks>
</member>
<member name="T:Symbol.Printing.PrinterSettings">
<summary>
This class specifies information about how a document is printed,
including the printer that prints it.
</summary>
<remarks>
Typically, you access PrinterSettings through PrintDocument.PrinterSettings
property to modify printer settings. The most common printer setting is PrinterName,
which specifies the printer to print to.
</remarks>
</member>
<member name="M:Symbol.Printing.PrinterSettings.#ctor">
<summary>
The default constructor initializes all fields to their default values.
</summary>
</member>
<member name="M:Symbol.Printing.PrinterSettings.ToString">
<summary>
Returns the printer name.
</summary>
<returns>The printer name string.</returns>
</member>
<member name="P:Symbol.Printing.PrinterSettings.InstalledPrinters">
<summary>
Gets the names of all printers installed on the computer.
</summary>
<value>
A StringCollection of the names of all installed printers.
</value>
<exception cref="T:Symbol.Exceptions.OperationFailureException">An OperationFailureException is
thrown if an error occured during the enumeration of the available printers.</exception>
</member>
<member name="P:Symbol.Printing.PrinterSettings.AvailableDevices">
<summary>
Gets the list of available printer devices installed on the system.
</summary>
<value>
An array of Symbol.Generic.Device ojbects that are installed on the system.
</value>
<exception cref="T:Symbol.Exceptions.OperationFailureException">An OperationFailureException is
thrown if an error occured during the enumeration of the available printers.</exception>
</member>
<member name="P:Symbol.Printing.PrinterSettings.IsDefaultPrinter">
<summary>
Gets a value indicating whether the PrinterName property designates the
default printer.
</summary>
<value>
true if PrinterName designates the default printer; otherwise, false.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PrinterName">
<summary>
Gets or sets the name of the printer to use.
</summary>
<value>
The name of the printer to use.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.IsValid">
<summary>
Gets a value indicating whether the PrinterName property designates
a valid printer.
</summary>
<value>
true if the PrinterName property designates a valid printer; otherwise, false.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PrintToFile">
<summary>
Gets or sets a value indicating whether the print output should be directed to a file.
</summary>
<value>
true if the print output should be directed to a file; otherwise, false.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PrintToFileName">
<summary>
Gets or sets the file to accept the print output if PrintToFile is true.
</summary>
<value>
The name of the file to accept the print output if PrintToFile is true.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PrinterResolutions">
<summary>
Gets all the resolutions that are supported by this printer.
</summary>
<value>
A PrinterSettings.PrinterResolutionCollection that represents the resolutions that are supported by this printer.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PaperSizes">
<summary>
Gets the paper sizes that are supported by this printer.
</summary>
<value>
A PrinterSettings.PaperSizeCollection that represents the paper sizes that are supported by this printer.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.Versions">
<summary>
Gets the version numbers of the assmebly and the driver DLLs
</summary>
<value>
A DriverVersions structure containing version information.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.Capacities">
<summary>
Gets the capacities of the printer
</summary>
<value>
A DeviceCapacities structure containing capacity infromation of the printer.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.SupportedFonts">
<summary>
Gets a list of fonts supprorted by the printer
</summary>
<value>
An array of SymbolFont representing the fonts supported by the printer.
</value>
<exception cref="T:Symbol.Exceptions.OperationFailureException">An OperationFailureException is
thrown if the font information of the printer is not available.</exception>
</member>
<member name="P:Symbol.Printing.PrinterSettings.DefaultFont">
<summary>
Gets the default font of the printer
</summary>
<value>
A SymbolFont representing the default font of the printer.
</value>
</member>
<member name="T:Symbol.Printing.PrinterSettings.StringCollection">
<summary>
This class represents a collection of strings.
</summary>
<remarks>
The StringCollection provides methods and properties to enumerate and
search a collection of string objects.
</remarks>
</member>
<member name="M:Symbol.Printing.PrinterSettings.StringCollection.#ctor(System.String[])">
<summary>
Constructing a StringCollection from an array of string ojbects.
</summary>
<param name="strings">An array of string objects.</param>
</member>
<member name="M:Symbol.Printing.PrinterSettings.StringCollection.#ctor(System.Collections.ArrayList)">
<summary>
Constructing a StringCollection from an ArrayList.
</summary>
<param name="strings">An ArrayList of string objects.</param>
</member>
<member name="M:Symbol.Printing.PrinterSettings.StringCollection.Find(System.String)">
<summary>
Find a string from a StringCollection.
</summary>
<param name="s">The string to be found.</param>
<returns>true if the string is found; otherwirse, false.</returns>
</member>
<member name="M:Symbol.Printing.PrinterSettings.StringCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the collection to an Array, starting at a particular Array index.
</summary>
<param name="array">The one-dimensional Array that is the destination of the elements copied from StringCollection. The Array must have zero-based indexing.</param>
<param name="index">The zero-based index in array at which copying begins.</param>
</member>
<member name="M:Symbol.Printing.PrinterSettings.StringCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>An IEnumerator that can be used to iterate through the collection.</returns>
</member>
<member name="P:Symbol.Printing.PrinterSettings.StringCollection.Count">
<summary>
Gets the number of elements contained in the StringCollection instance.
</summary>
<value>Number of elements in the collection.</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.StringCollection.IsSynchronized">
<summary>
Gets a value indicating whether access to the collection is synchronized (thread-safe).
</summary>
<value>
true if access to the collection is synchronized (thread-safe); otherwise, false.
</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.StringCollection.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection
</summary>
<value>An object that can be used to synchronize access to the collection</value>
</member>
<member name="T:Symbol.Printing.PrinterSettings.PaperSizeCollection">
<summary>
Contains a collection of PaperSize objects.
</summary>
<remarks>
The PrinterSettings.PaperSizeCollection contains PaperSize instances that
represents the paper sizes through the PaperSize.Kind property, which
contains one of the PaperKind values.
<para>Typically, you set a document's paper size through the <see cref="P:Symbol.Printing.PrintDocument.PaperSize"/>
property to a valid PaperSize instance available through the <see cref="P:Symbol.Printing.PrinterSettings.PaperSizes"/> collection of
PrinterSettings.</para>
</remarks>
</member>
<member name="M:Symbol.Printing.PrinterSettings.PaperSizeCollection.#ctor(Symbol.Printing.PaperSize[])">
<summary>
Initializes a new instance of the PrinterSettings.PaperSizeCollection class.
</summary>
<param name="array">An array of type <see cref="T:Symbol.Printing.PaperSize"/>.</param>
</member>
<member name="M:Symbol.Printing.PrinterSettings.PaperSizeCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>An IEnumerator for the PrinterSettings.PaperSizeCollection.</returns>
</member>
<member name="M:Symbol.Printing.PrinterSettings.PaperSizeCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the collection to an Array, starting at a particular Array index.
</summary>
<param name="array">The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing.</param>
<param name="index">The zero-based index in array at which copying begins.</param>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PaperSizeCollection.Count">
<summary>
Gets the number of different paper sizes in the collection.
</summary>
<value>Number of different paper sizes in the collection.</value>
</member>
<member name="P:Symbol.Printing.PrinterSettings.PaperSizeCollection.Item(System.Int32)">
<summary>
Indexer of the collection.
</summary>
</member>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -