Reading an Object
This section shows example code of reading an object.
'////////////////////////////////////////////////////////////////////////
'
' ReadObject
'
'////////////////////////////////////////////////////////////////////////
Public Sub ReadObject (ObjectID As Long, valueString As String)
Dim info As New MetaInfo
info.ObjectID = ObjectID
Repository.ReadObject info
Exit Sub
End Sub