User Tools

Site Tools


built_in:textedit

Differences

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

Link to this comparison view

built_in:textedit [2015/02/15 14:30]
octazid [Options] SingleLine
built_in:textedit [2016/04/30 06:35]
Line 1: Line 1:
-====== TextEdit control ====== 
-===== Create ===== 
-Create TextEdit objects using the CreateTextEdit method of the app object: 
-<code>edt = app.CreateTextEdit( text, width, height, options );</code> 
-You can use the SetOnChange method of the TextEdit to set the name of a function you want to be called when a the text is changed. 
  
-Use the SetText and GetText functions to set and get the text in the TextEdit 
-===== Methods ===== 
-Some controls use the same methods.\\ 
-For examples of the **[[same methods]]** look here. 
-^Method ^Description ^ 
-|TextEdit.ClearHistory() | | 
-|TextEdit.Destroy() | | 
-|TextEdit.GetAbsHeight() | | 
-|TextEdit.GetAbsWidth() | | 
-|TextEdit.GetCursorLine() | Returns the line with the Cursor as number| 
-|TextEdit.GetCursorPos() | Returns the position of the Cursor as number| 
-|TextEdit.GetHtml()| Returns the Text of a Textedit as Html \\ use this if the contol has a Html option| 
-|TextEdit.GetHeight() | | 
-|TextEdit.GetLineCount() | Returns the count of a line in the Textedit| 
-|TextEdit.GetLineStart( lineNum ) | Returns the position of the start of a line as number| 
-|TextEdit.GetLineTop( lineNum ) | | 
-|TextEdit.GetMaxLines() | Returns the count of all lines| 
-|TextEdit.GetPosition() | | 
-|TextEdit.GetSelectedText()| Returns the selected Text| 
-|TextEdit.GetSelectionEnd()| Returns the endposition of the selected Text as number| 
-|TextEdit.GetSelectionStart()| Returns the startposition of the selected text as number| 
-|TextEdit.GetText() | Returns the Text of the Textedit | 
-|TextEdit.GetTextSize( mode ) | Returns the Textsize of the Text | 
-|TextEdit.GetType() | | 
-|TextEdit.GetVisibility() | | 
-|TextEdit.GetWidth() | | 
-|TextEdit.InsertText( text,start,end ) | | 
-|TextEdit.Redo() | | 
-|TextEdit.Release() | | 
-|TextEdit.ReplaceText( text,start,end ) | | 
-|TextEdit.SetBackColor( color ) | | 
-|TextEdit.SetBackGradient( color1,color2,color3,p4,p5,p6,p7 ) | | 
-|TextEdit.SetBackGradientRadial( x,y,r,color1,color2,color3,p7 ) | | 
-|TextEdit.SetBackground( imagefile,options ) | | 
-|TextEdit.SetCursorPos( number ) | | 
-|TextEdit.SetHint( text ) | | 
-|TextEdit.SetHtml( text ) | | 
-|TextEdit.SetMargins( left,top,right,bottom ) | | 
-|TextEdit.SetOnChange( callback ) | Starts if the user change the Text in the Textedit | 
-|TextEdit.SetOnTouch( callback )| Starts if the user enter the Textedit | 
-|TextEdit.SetPadding( left,top,right,bottom ) | | 
-|TextEdit.SetPosition( left,top,width,height ) | | 
-|TextEdit.SetScale( x,y ) | | 
-|TextEdit.SetSelection( start,stop ) | Select Text \\  start and stop are the positions in the text as number| 
-|TextEdit.SetSize( width,height ) | | 
-|TextEdit.SetText( text ) | | 
-|TextEdit.SetTextColor( color ) | | 
-|TextEdit.SetTextSize( size,mode ) | | 
-|TextEdit.SetVisibility( ShowHide ) | | 
-|TextEdit.Undo() | | 
- 
-===== Options ===== 
- 
-^Option ^Description ^ 
-|AutoSelect|Select all Text if user enter the Textedit| 
-|Center|Justify the text in the middle| 
-|Left|Justify the text to the left| 
-|Monospace|Shows the Text in a Monospace Font| 
-|NoSpell|Disable the spell-checker| 
-|Number|Defaults to the numeric keyboard| 
-|NoKeyboard|Shows no Keyboard| 
-|ReadOnly|You cant change the Text| 
-|Right|Justify the text to the right| 
-|SingleLine|Does'nt make a linebreak if \\ text is longer than the control| 
built_in/textedit.txt ยท Last modified: 2016/04/30 06:35 (external edit)