e922f76f32
* BUG: Now the gb.chart is structured as a gambas3 source. It does not make gbi3 crash anymore, neither IDE git-svn-id: svn://localhost/gambas/trunk@2417 867c0c6c-44f3-4631-809d-bfa615b0a4ec
25 lines
319 B
Text
25 lines
319 B
Text
' Gambas class file
|
|
Export
|
|
Inherits _CAxes
|
|
|
|
Public Const Normal As Integer = 0
|
|
|
|
Public Const Steps As Integer = 1
|
|
|
|
Private $iArrange As Integer = 0
|
|
|
|
Property Arrange As Integer
|
|
|
|
|
|
|
|
Private Function Arrange_Read() As Integer
|
|
|
|
Return $iArrange
|
|
|
|
End
|
|
|
|
Private Sub Arrange_Write(Value As Integer)
|
|
|
|
$iArrange = Value
|
|
|
|
End
|