ba19f3c1dd
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
16 lines
326 B
Text
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
|