リスト7:プリンタの設定を保存する構造体の定義
処理内で変更するものだけを保存すればよい


Private Type PrinterDefault
   iHeight As Integer
   ' 用紙の高さ
   iWidth As Integer
   ' 用紙の幅
   iPaperSize As Integer
   ' 用紙サイズ
   strFontName As String
   ' フォント名
   iFontSize As Integer
   ' フォントサイズ
   blItalic As Boolean
   ' フォント斜体の指示
   blBold As Boolean
   ' フォント太字の指示
   iScaleMode As Integer
   ' スケールモード
   iOrientation As Integer
   ' 用紙方向
End Type


本文へ戻る