GetListPropInfo Method
This method returns basic information about all of the properties contained
by the mezObjects
in a mezList. The
status code integer result of the call to this method indicates whether
the query for the property information was successful.
Syntax
objMezList.GetListPropInfo(
ByVal iPropertyIndex As Integer,
ByRef sPropertyName As String,
ByRef iPropertyNumber As Integer,
ByRef bExpandable As Boolean,
ByRef eSortType As e_SortType,
ByRef bDisplayable As Boolean) As Integer
Parameters
iPropertyIndex index to
a property
sPropertyName (set
by the method) name of the property
iPropertyNumber (set
by the method) number of the property
bExpandable (set by
the method) indicates whether the property is expandable
eSortType (set by the
method) indicates how the property values should be sorted,
as
defined in the e_SortType
enumeration:
eSortTypeString
value sorted as a string, left justified
eSortTypeNumeric
value sorted as a number, right justified
bDisplayable (set by
the method) indicates whether the property value should be visible
Applies to
mezList object
Return Value
Status Code (Integer)
Example
/SampleApps/UserGroupAdmin/frmMain.DisplayPropertyInListView
See Also
mezObject Object
e_SortType Enumeration
GetRowObject Method
This method returns a single mezObject
contained in the mezList.
The status code integer result of the call to this method indicates whether
the query for the object was successful.
Syntax
objMezList.GetRowObject(
ByVal lRowNumber As Long,
ByRef mzoListObject As mezObject) As Integer
Parameters
lRowNumber index to the
mezObject in the mezList
mzoListObject (set
by the method) the mezObject
Applies to
mezList object
Return Value
Status Code (Integer)
Example
/SampleApps/UserGroupAdmin/frmMain.DisplayPropertyInListView
See Also
mezObject Object
|