-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLoopInfo.cls
More file actions
36 lines (29 loc) · 825 Bytes
/
LoopInfo.cls
File metadata and controls
36 lines (29 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
' Creole Forth for VB
' Version 0.01
' Copyright 2021 Joseph M. O'Connor
' This Source Code Form is subject to the terms of the Mozilla Public
' License, v. 2.0. If a copy of the MPL was not distributed with this
' file, You can obtain one at http://mozilla.org/MPL/2.0/.
Option Explicit
Dim iReturnVal As Integer
Dim sLabel As String
Dim iIndex As Integer
Dim iLimit As Integer
Public Property Let Label(Value As String)
sLabel = Value
End Property
Public Property Get Label() As String
Label = sLabel
End Property
Public Property Let Index(Value As Integer)
iIndex = Value
End Property
Public Property Get Index() As Integer
Index = iIndex
End Property
Public Property Let Limit(Value As Integer)
iLimit = Value
End Property
Public Property Get Limit() As Integer
Limit = iLimit
End Property