CodeMaskLevel Object

CodeMask
CodeMaskLevel

Represents a level in the code mask in an outline code definition. The CodeMaskLevel object is a member of the CodeMask collection.

Using the CodeMaskLevel Object

The following example adds three levels to a code mask.

Sub DefineLocationCodeMask(objCodeMask As CodeMask)
    
   objCodeMask.Add _
        Sequence:=pjCustomOutlineCodeUppercaseLetters, _
        Length:=2, Separator:="."
    
   objCodeMask.Add _
        Sequence:=pjCustomOutlineCodeUppercaseLetters, _
        Separator:="."
    
   objCodeMask.Add _
        Sequence:=pjCustomOutlineCodeUppercaseLetters, _
        Length:=3, Separator:="."
End Sub

Properties | Application Property | Index Property | Length Property | Level Property | Parent Property | Separator Property | Sequence Property

Methods | Delete Method

Parent Objects | CodeMask Collection Object