HVScrollableView.st
author Claus Gittinger <cg@exept.de>
Mon, 07 Feb 2000 20:25:55 +0100
changeset 2120 1054ce5c8fe7
parent 1923 cc9c075f0bc5
child 2149 b2e64bada77c
permissions -rw-r--r--
category change

ScrollableView subclass:#HVScrollableView
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Basic'
!

!HVScrollableView class methodsFor:'documentation'!

documentation
"
    This class is now void; all horizontal scroll functionality is
    now contained in ScrollableView.
    It remains here, for backward compatibility with applications using
    it.

    Please see the documentation and examples in my superclass, ScrollableView

    [author:]
        Claus Gittinger
"

! !

!HVScrollableView class methodsFor:'defaults'!

defaultHorizontalScrollable
    ^ true


! !

!HVScrollableView class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg/HVScrollableView.st,v 1.27 1999-06-17 08:51:08 tm Exp $'
! !