The Label_Offset property returns both the Label_Row_Offset (high) and the Label_Col_Offset (low) properties as a single (two-component) property. The high value of the return parameter represents the row offset. The low value represents the column offset.
When this property is set, two integer parameters are passed as specified in the parameter list. When the value of the property is retrieved, the value of these two properties is returned as a folded integer. The value of these parameters can be accessed using the hi() and low() functions.
Get Label_Offset of oForm to iValue Move (Hi(iValue)) to iRowOffset Move (Low(iValue)) to iColumnOffset
Label_Offset is set as a single property passing the row offset and the column offset as two separate parameters.
Set Label_Offset of oForm to iRowOffset iColumnOffsetSee Also