FlexCel Studio for VCL/LCL
ContentsIndex
PreviousUpNext
TPrinterDriverSettings Record

Printer specific settings. It is a byte array with a Win32 DEVMODE structure.

Pascal
TPrinterDriverSettings = record
  OperatingEnviroment: word;
  Data: array of byte;
end;
C++
struct TPrinterDriverSettings {
  word OperatingEnviroment;
  array of byte Data;
};
Members 
Description 
OperatingEnviroment: word; 
Determines the O.S. this structure was saved in. 0 means windows.  
Data: array of byte; 
When OperatingEnviroment=0 (windows) you can cast this Data to a DevMode struct.  
Copyright (c) 2002-2008 TMS Software. All rights reserved.
What do you think about this topic? Send feedback!