home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD 45
/
SuperCD45.iso
/
talleres
/
vbasic
/
BNode.cls
next >
Wrap
Text File
|
2000-01-30
|
2KB
|
64 lines
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "BNode"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Option Explicit
Private mvarfileName As String 'local copy
Private mvarnextBNode As BNodeList 'local copy
Private mvarattributes As Integer 'local copy
Private mvarprevBNode As BNode 'local copy
Public Property Set prevBNode(ByVal vData As BNode)
'used when assigning an Object to the property, on the left side of a Set statement.
'Syntax: Set x.prevBNode = Form1
Set mvarprevBNode = vData
End Property
Public Property Get prevBNode() As BNode
'used when retrieving value of a property, on the right side of an assignment.
'Syntax: Debug.Print X.prevBNode
Set prevBNode = mvarprevBNode
End Property
Public Property Let attributes(ByVal vData As Integer)
'used when assigning a value to the property, on the left side of an assignment.
'Syntax: X.attributes = 5
mvarattributes = vData
End Property
Public Property Get attributes() As Integer
'used when retrieving value of a property, on the right side of an assignment.
'Syntax: Debug.Print X.attributes
attributes = mvarattributes
End Property
Public Property Set nextBNode(ByVal vData As BNodeList)
'used when assigning an Object to the property, on the left side of a Set statement.
'Syntax: Set x.nextBNode = Form1
Set mvarnextBNode = vData
End Property
Public Property Get nextBNode() As BNodeList
'used when retrieving value of a property, on the right side of an assignment.
'Syntax: Debug.Print X.nextBNode
Set nextBNode = mvarnextBNode
End Property
Public Property Let fileName(ByVal vData As String)
'used when assigning a value to the property, on the left side of an assignment.
'Syntax: X.fileName = 5
mvarfileName = vData
End Property
Public Property Get fileName() As String
'used when retrieving value of a property, on the right side of an assignment.
'Syntax: Debug.Print X.fileName
fileName = mvarfileName
End Property