colPhases

Returns or sets the submission phases displayed on the grid. The property takes an array of phase IDs, which can range from 1 through 9, and should be specified in ascending order. You must cast the phase IDs to Longs.

Read-write.

Example

The following example sets 1 and 2 as the grid's submission phases.

dim vaColPhases(1)
vaColPhases(0) = CLng(1)
vaColPhases(1) = CLng(2)
'cHFMDataGrid is an HFMwDataGrid object reference
cHFMDataGrid.colPhases = vaColPhases