PrinterStream.st
changeset 627 8003af47744a
parent 571 191b37534643
child 751 5f8d228a48fd
--- a/PrinterStream.st	Tue Mar 31 20:02:24 1998 +0200
+++ b/PrinterStream.st	Wed Apr 01 11:57:24 1998 +0200
@@ -17,7 +17,22 @@
 	category:'Streams-External'
 !
 
-PrinterStream class instanceVariableNames:'PrintCommand DefaultCommands PageFormat DefaultPageFormats Landscape PrintDevice DefaultDevices'
+PrinterStream class instanceVariableNames:'PrintCommand DefaultCommands PageFormat DefaultPageFormats Landscape
+	PrintDevice DefaultDevices'
+
+"
+ The following class instance variables are inherited by this class:
+
+	PipeStream - 
+	NonPositionableExternalStream - 
+	ExternalStream - 
+	ReadWriteStream - 
+	WriteStream - 
+	PositionableStream - 
+	PeekableStream - 
+	Stream - 
+	Object - 
+"
 !
 
 !PrinterStream class methodsFor:'documentation'!
@@ -768,6 +783,13 @@
     "Created: 3.6.1996 / 12:06:21 / cg"
 !
 
+landscape
+    ^ self class landscape
+
+    "Modified: 3.6.1996 / 10:27:45 / cg"
+    "Created: 5.9.1996 / 21:38:23 / cg"
+!
+
 leftMargin
     ^ self class leftMargin
 
@@ -830,6 +852,6 @@
 !PrinterStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/PrinterStream.st,v 1.48 1997-09-20 21:52:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/PrinterStream.st,v 1.49 1998-04-01 09:57:24 ca Exp $'
 ! !
 PrinterStream initialize!