FormatUtilPrintStoredFormat Method (String, DictionaryInt32, String)
             | 
          
        
         
            Prints a stored format on the printer, filling in the fields specified by the Dictionary.
            
 
    Namespace: 
   Zebra.Sdk.Printer
    Assembly:
   SdkApi_Core (in SdkApi_Core.dll) Version: 2.14.1989
Syntaxvoid PrintStoredFormat(
	string formatPathOnPrinter,
	Dictionary<int, string> vars
)
Sub PrintStoredFormat ( 
	formatPathOnPrinter As String,
	vars As Dictionary(Of Integer, String)
)
void PrintStoredFormat(
	String^ formatPathOnPrinter, 
	Dictionary<int, String^>^ vars
)
Parameters
- formatPathOnPrinter
 - Type: SystemString
The location of the file on the printer (e.g. "E:FORMAT.ZPL"). - vars
 - Type: System.Collections.GenericDictionaryInt32, String
A Dictionary which contains the key/value pairs for the stored format. For LinkOS/ZPL printer formats, the
            key number should correspond directly to the number of the field in the format.For CPCL printer formats, the
            values will be passed in ascending numerical order. 
Exceptions
Remarks
            The values of any format variables will be encoded using the default 
encoding type. On a LinkOS/ZPL printer, only ZPL formats
            are supported.On a CPCL printer, only CPCL formats are supported.
            See 
String for more information about encoding types.
            
See Also