ISProfile.LoadShortCodeTypes

Description

This function returns the types of short codes.

Syntax

object.LoadShortCodeTypes()

Part Attribute Type Description
object Required
The object always implements the ISProfile interface

Return Value

ISShortCodeTypes

Returns the types of short codes.

Example

Display the number of the types of short code and their descriptions.

Dim aTypes
Dim aType
Dim aMessage

Set aTypes = Profile.LoadShortCodeTypes

aMessage = "Types of Short Codes Count = " & aTypes.Count
for i = 0 to aTypes.Count - 1
  set aType = aTypes.Item(i)
  aMessage = aMessage & vbNewLine & aType.Description
next      

Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface Short Code Types can be found in Maintain > Short Codes > Type.

Version information

Added in v7.8.0