gambas-source-code/comp/src/gb.chart/CRect.class
Benoît Minisini ba19f3c1dd * Copy https://gambas.svn.sourceforge.net/svnroot/gambas/2.0 to https://gambas.svn.sourceforge.net/svnroot/gambas/gambas
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2007-12-30 16:41:49 +00:00

16 lines
326 B
Text

' Gambas class file
PUBLIC Top AS Integer
PUBLIC Bottom AS Integer
PUBLIC {Left} AS Integer
PUBLIC {Right} AS Integer
PUBLIC SUB _New(OPTIONAL iLeft AS Integer, OPTIONAL iRight AS Integer, OPTIONAL iTop AS Integer, OPTIONAL iBottom AS Integer)
{Left} = iLeft
{Right} = iRight
Top = iTop
Bottom = iBottom
END