User Tools

Site Tools


built_in:checkboxes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
built_in:checkboxes [2015/01/07 09:44]
octazid [Methods]
built_in:checkboxes [2015/03/08 10:40]
octazid [Description]
Line 1: Line 1:
 ====== CheckBoxes ====== ====== CheckBoxes ======
-===== Create ===== + 
-Create CheckBoxes using the CreateCheckBox method of the app object: +//(Information and examples taken from the DroidScript documentation)// 
-<code>chk = app.CreateCheckBox( text );</code> + 
-Use the SetOnTouch method of the CheckBox object to set the name of a function you want to be called when the CheckBox is touched. You can read the 'isChecked' parameter in your callback function to get the state of the CheckBox+===== Description ===== 
 +Create CheckBoxes using the **CreateCheckBox** method of the [[built_in:app|[[built_in:app|app]]]] object: 
 +<code> chk = app.CreateCheckBox( text );</code> 
 +Use the **SetOnTouch** method of the CheckBox object to set the name of a function you want to be called when the CheckBox is touched. You can read the 'isChecked' parameter in your callback function to get the state of the CheckBox
 + 
 +----
 ===== Methods ===== ===== Methods =====
 Some controls use the same methods.\\ Some controls use the same methods.\\
Line 20: Line 25:
 |CheckBox.GetWidth() | | |CheckBox.GetWidth() | |
 |CheckBox.Release() | | |CheckBox.Release() | |
-|CheckBox.SetBackColor( p1 ) | | +|CheckBox.SetBackColor( colorCode ) | | 
-|CheckBox.SetBackGradient( p1,p2,p3,p4,p5,p6,p7 ) | | +|CheckBox.SetBackGradient( color1,color2,color3,p4,p5,p6,p7 ) | | 
-|CheckBox.SetBackGradientRadial( p1,p2,p3,p4,p5,p6,p7 ) | | +|CheckBox.SetBackGradientRadial( x,y,r,color1,color2,color3,p7 ) | | 
-|CheckBox.SetBackground( p1,p2 ) | | +|CheckBox.SetBackground( imagefile,options ) | | 
-|CheckBox.SetChecked( p1 ) | |+|CheckBox.SetChecked( checked ) | |
 |CheckBox.SetMargins( left,top,right,bottom ) | | |CheckBox.SetMargins( left,top,right,bottom ) | |
 |CheckBox.SetOnTouch( callback ) | | |CheckBox.SetOnTouch( callback ) | |
-|CheckBox.SetPadding( p1,p2,p3,p4 ) | | +|CheckBox.SetPadding( lefttoprightbottom ) | | 
-|CheckBox.SetPosition( p1,p2,p3,p4 ) | |+|CheckBox.SetPosition( lefttopwidthheight ) | |
 |CheckBox.SetScale( x,y ) | | |CheckBox.SetScale( x,y ) | |
-|CheckBox.SetSize( p1,p2 ) | | +|CheckBox.SetSize( widthheight  ) | | 
-|CheckBox.SetText( p1 ) | | +|CheckBox.SetText( text ) | | 
-|CheckBox.SetTextColor( p1 ) | |+|CheckBox.SetTextColor( colorCode ) | |
 |CheckBox.SetTextSize( size,mode ) | | |CheckBox.SetTextSize( size,mode ) | |
-|CheckBox.SetVisibility( p1 ) | |+|CheckBox.SetVisibility( HideShow ) | | 
 + 
 +---- 
 + 
 +====Example==== 
 + 
 +<code javascript> 
 +function OnStart() 
 +
 +  lay = app.CreateLayout( "Linear", "VCenter,FillXY" ); 
 + 
 +  chk = app.CreateCheckBox( "Enable Stuff" ); 
 +  chk.SetOnTouch( ShowState ); 
 +  lay.AddChild( chk ); 
 + 
 +  app.AddLayout( lay ); 
 +
 + 
 +function ShowState( isChecked ) 
 +
 +  app.ShowPopup( "Checked = " + isChecked, "Short" ); 
 +
 +</code>
built_in/checkboxes.txt · Last modified: 2015/11/02 19:05 (external edit)