Skip navigation  
Glossary  |  General Information  
   Content Services User Administration API
     Search in CS User Admin API Overview   |   API Classes   |   Enumeration Constants   |   Status Codes  
Level 1 Overview
Level 1 API Classes
Level 2 mezSession
Level 2 mezObject
Level 2 mezProperty
Level 2 mezList
Level 2     Methods
Level 2     GetListPropInfo
Level 2     GetRowObject
Level 2     Properties
Level 2     bMoreAvailable
Level 2     iListPropCount
Level 2     lListRows
Level 2 mezUtility
Level 1 Enumeration Constants
Level 1 Status Codes
Level 1 General Information
   

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