+widthFrom:to:on:
authorMichael Beyl <mb@exept.de>
Tue, 23 Jul 2002 17:31:56 +0200
changeset 1579 e23c7c766c69
parent 1578 85e8db671220
child 1580 84e53294af20
+widthFrom:to:on:
DisplayObject.st
--- a/DisplayObject.st	Wed Jul 17 17:44:29 2002 +0200
+++ b/DisplayObject.st	Tue Jul 23 17:31:56 2002 +0200
@@ -215,8 +215,14 @@
     ^ frame width
 !
 
+widthFrom:startIndex to:endIndex on:aGC
+    "return the width of part of myself if drawn on aCG"
+
+    ^ self subclassResponsibility
+!
+
 widthOn:aGC
-    "return the width of the frame if drawon on aCG"
+    "return the width of the frame if drawn on aCG"
 
     ^ self width
 
@@ -515,5 +521,5 @@
 !DisplayObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.25 2002-02-26 13:05:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.26 2002-07-23 15:31:56 mb Exp $'
 ! !