Copyright © 2016 Mobilengine Corp. All rights reserved. version: 7.0.4.19927
The string that is displayed as the label of its control.
Remarks
The text that you specify in the label
property appears to the left of
the parent control. The label
property is optional, but if you declare one,
even if you assign it an empty string (""
), the control will be pushed to the
right in the displayed form by a preset length to make room for the label text.
Sample
<form id='labelSample' menuName='Label Samples' platforms='web' xmlns='http://schemas.mobilengine.com/fls/v1'> <textbox text='This textbox control has no label declared' width='20 em'/> <textbox label='' width='20 em' text='This textbox has an empty label'/> <textbox label='Very long label text will be wrapped.' width='20 em' text='This textbox has a very long label.'/> </form>
Because none of the controls in the form above has an identifier, a workflow script running in the Mobilengine Cloud would only be able to access the metadata of its submission.