Search.../

label

Sets or gets a mobile button's label.

Type:

stringRead & Write, default value is Empty string

Was this helpful?

Get a mobile button's label

Copy Code
1let buttonLabel = $w('#mobileButton1').label; // 'Submit'
Set a mobile button's label

Copy Code
1$w('#mobileButton1').label = 'New Label';