FixedCols, FixedRows Properties (ModHFGrid) Example

The following code sets the first row and the first and second columns to fixed.

Sub Form1_Load () 
   ModHFGrid1.FixedCols = 2
   ModHFGrid1.FixedRows = 1
End Sub