Small company logo:
   History
 
Advertising banner:
 
 FCControlVar
Home • Help • Customization Tools • FCAS • Language Reference • FCControlVar
 
Purpose
This datatype can be used to pass fields by reference to a Sub or Function.
Syntax
FCControlVar
Example
Sub Main

frm.Show
Debug AmIHidden(frm.fld1000)

End Sub

Function AmIHidden(fld as FCControlVar) as Integer

AmIHidden = fld.Hidden

End Function