Skip to content

MFGS Printing

MFGSPrinting Public interface

Description

Describes methods and properties available on the static instance object MFGS.Printing

Diagram

flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph VGWWCoreIEx
VGWWCoreIEx.IExMFGSPrinting[[IExMFGSPrinting]]
class VGWWCoreIEx.IExMFGSPrinting interfaceStyle;
end

Members

Methods

Public methods

ReturnsName
voidSendBytesToPrinter(string printer, byte``[] data)
Sends a byte arrary to the specifed printer.
voidSendFileToPrinter(string printer, string fileName)
Sends the contents of a file to the specifed printer.
voidSendStringToPrinter(string printer, string data)
Sends a string to the specifed printer.

Details

Summary

Describes methods and properties available on the static instance object MFGS.Printing

Methods

SendBytesToPrinter

public void SendBytesToPrinter(string printer, byte[] data)
Arguments
TypeNameDescription
stringprinterThe name of the printer as defined in Windows.
byte``[]dataThe byte array to be sent.
Summary

Sends a byte arrary to the specifed printer.

SendFileToPrinter

public void SendFileToPrinter(string printer, string fileName)
Arguments
TypeNameDescription
stringprinterThe name of the printer as defined in Windows.
stringfileNameThe path and name of the file contents to be sent.
Summary

Sends the contents of a file to the specifed printer.

SendStringToPrinter

public void SendStringToPrinter(string printer, string data)
Arguments
TypeNameDescription
stringprinterThe name of the printer as defined in Windows.
stringdataThe string to be sent.
Summary

Sends a string to the specifed printer.

Generated with ModularDoc