March 2020
Intermediate to advanced
534 pages
14h 15m
English
To iterate through a container control in order to interact with its controls, follow these steps:
private void SetControlLabel(FormControl _formControl, str _label){ if (_formControl is FormStringControl) { FormStringControl stringCtrl = _formControl; stringCtrl.label(_label); } if (_formControl is FormRealControl) { FormRealControl realControl = _formControl; realControl.label(_label); } // etc for FormIntControl, FormInt64Control, FormDateControl}
private void ...
Read now
Unlock full access