PrinterContext.st
changeset 3287 11a9d55d663c
parent 2565 961d9cb4a31c
child 3315 c51703ef04b6
equal deleted inserted replaced
3286:d494c40e3ca4 3287:11a9d55d663c
   330 initExtent
   330 initExtent
   331     "Private - init the width and height of GraphicsTool for the receiver."
   331     "Private - init the width and height of GraphicsTool for the receiver."
   332 
   332 
   333     width := self printerWidthArea.
   333     width := self printerWidthArea.
   334     height := self printerHeightArea.
   334     height := self printerHeightArea.
   335     device
   335     self graphicsDevice
   336         width:width;
   336         width:width;
   337         height:height.
   337         height:height.
   338     
   338     
   339 
   339 
   340     "Modified: / 01-08-2006 / 16:14:49 / fm"
   340     "Modified: / 01-08-2006 / 16:14:49 / fm"
   952 ! !
   952 ! !
   953 
   953 
   954 !PrinterContext class methodsFor:'documentation'!
   954 !PrinterContext class methodsFor:'documentation'!
   955 
   955 
   956 version
   956 version
   957     ^ '$Header: /cvs/stx/stx/libview2/PrinterContext.st,v 1.19 2008-11-20 08:52:38 fm Exp $'
   957     ^ '$Header: /cvs/stx/stx/libview2/PrinterContext.st,v 1.20 2014-02-18 15:06:02 stefan Exp $'
   958 ! !
   958 ! !
       
   959