summaryrefslogtreecommitdiff
path: root/doc/classes/TextEdit.xml
blob: 5444721e1093e6ee231997ff5a72a180e29863f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
<?xml version="1.0" encoding="UTF-8" ?>
<class name="TextEdit" inherits="Control" version="4.0">
	<brief_description>
		Multiline text editing control.
	</brief_description>
	<description>
		TextEdit is meant for editing large, multiline text. It also has facilities for editing code, such as syntax highlighting support and multiple levels of undo/redo.
		[b]Note:[/b] When holding down [kbd]Alt[/kbd], the vertical scroll wheel will scroll 5 times as fast as it would normally do. This also works in the Godot script editor.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="_backspace" qualifiers="virtual">
			<return type="void" />
			<description>
				A virtual method that is called whenever backspace is triggered.
			</description>
		</method>
		<method name="add_gutter">
			<return type="void" />
			<argument index="0" name="at" type="int" default="-1" />
			<description>
			</description>
		</method>
		<method name="backspace">
			<return type="void" />
			<description>
				Causes the [TextEdit] to perform a backspace.
			</description>
		</method>
		<method name="center_viewport_to_cursor">
			<return type="void" />
			<description>
				Centers the viewport on the line the editing cursor is at. This also resets the [member scroll_horizontal] value to [code]0[/code].
			</description>
		</method>
		<method name="clear_opentype_features">
			<return type="void" />
			<description>
				Removes all OpenType features.
			</description>
		</method>
		<method name="clear_undo_history">
			<return type="void" />
			<description>
				Clears the undo history.
			</description>
		</method>
		<method name="copy">
			<return type="void" />
			<description>
				Copy's the current text selection.
			</description>
		</method>
		<method name="cursor_get_column" qualifiers="const">
			<return type="int" />
			<description>
				Returns the column the editing cursor is at.
			</description>
		</method>
		<method name="cursor_get_line" qualifiers="const">
			<return type="int" />
			<description>
				Returns the line the editing cursor is at.
			</description>
		</method>
		<method name="cursor_set_column">
			<return type="void" />
			<argument index="0" name="column" type="int" />
			<argument index="1" name="adjust_viewport" type="bool" default="true" />
			<description>
				Moves the cursor at the specified [code]column[/code] index.
				If [code]adjust_viewport[/code] is set to [code]true[/code], the viewport will center at the cursor position after the move occurs.
			</description>
		</method>
		<method name="cursor_set_line">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="adjust_viewport" type="bool" default="true" />
			<argument index="2" name="can_be_hidden" type="bool" default="true" />
			<argument index="3" name="wrap_index" type="int" default="0" />
			<description>
				Moves the cursor at the specified [code]line[/code] index.
				If [code]adjust_viewport[/code] is set to [code]true[/code], the viewport will center at the cursor position after the move occurs.
				If [code]can_be_hidden[/code] is set to [code]true[/code], the specified [code]line[/code] can be hidden.
			</description>
		</method>
		<method name="cut">
			<return type="void" />
			<description>
				Cut's the current selection.
			</description>
		</method>
		<method name="delete_selection">
			<return type="void" />
			<description>
			</description>
		</method>
		<method name="deselect">
			<return type="void" />
			<description>
				Deselects the current selection.
			</description>
		</method>
		<method name="get_caret_draw_pos" qualifiers="const">
			<return type="Vector2" />
			<description>
				Gets the caret pixel draw position.
			</description>
		</method>
		<method name="get_first_non_whitespace_column" qualifiers="const">
			<return type="int" />
			<argument index="0" name="line" type="int" />
			<description>
			</description>
		</method>
		<method name="get_gutter_count" qualifiers="const">
			<return type="int" />
			<description>
			</description>
		</method>
		<method name="get_gutter_name" qualifiers="const">
			<return type="String" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_gutter_type" qualifiers="const">
			<return type="int" enum="TextEdit.GutterType" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_gutter_width" qualifiers="const">
			<return type="int" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_indent_level" qualifiers="const">
			<return type="int" />
			<argument index="0" name="line" type="int" />
			<description>
				Returns the indent level of a specific line.
			</description>
		</method>
		<method name="get_line" qualifiers="const">
			<return type="String" />
			<argument index="0" name="line" type="int" />
			<description>
				Returns the text of a specific line.
			</description>
		</method>
		<method name="get_line_background_color">
			<return type="Color" />
			<argument index="0" name="line" type="int" />
			<description>
				Returns the current background color of the line. [code]Color(0, 0, 0, 0)[/code] is returned if no color is set.
			</description>
		</method>
		<method name="get_line_count" qualifiers="const">
			<return type="int" />
			<description>
				Returns the amount of total lines in the text.
			</description>
		</method>
		<method name="get_line_gutter_icon" qualifiers="const">
			<return type="Texture2D" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_line_gutter_item_color">
			<return type="Color" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_line_gutter_metadata" qualifiers="const">
			<return type="Variant" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_line_gutter_text" qualifiers="const">
			<return type="String" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="get_menu" qualifiers="const">
			<return type="PopupMenu" />
			<description>
				Returns the [PopupMenu] of this [TextEdit]. By default, this menu is displayed when right-clicking on the [TextEdit].
			</description>
		</method>
		<method name="get_opentype_feature" qualifiers="const">
			<return type="int" />
			<argument index="0" name="tag" type="String" />
			<description>
				Returns OpenType feature [code]tag[/code].
			</description>
		</method>
		<method name="get_selection_column" qualifiers="const">
			<return type="int" />
			<description>
			</description>
		</method>
		<method name="get_selection_from_column" qualifiers="const">
			<return type="int" />
			<description>
				Returns the selection begin column.
			</description>
		</method>
		<method name="get_selection_from_line" qualifiers="const">
			<return type="int" />
			<description>
				Returns the selection begin line.
			</description>
		</method>
		<method name="get_selection_line" qualifiers="const">
			<return type="int" />
			<description>
			</description>
		</method>
		<method name="get_selection_mode" qualifiers="const">
			<return type="int" enum="TextEdit.SelectionMode" />
			<description>
			</description>
		</method>
		<method name="get_selection_text" qualifiers="const">
			<return type="String" />
			<description>
				Returns the text inside the selection.
			</description>
		</method>
		<method name="get_selection_to_column" qualifiers="const">
			<return type="int" />
			<description>
				Returns the selection end column.
			</description>
		</method>
		<method name="get_selection_to_line" qualifiers="const">
			<return type="int" />
			<description>
				Returns the selection end line.
			</description>
		</method>
		<method name="get_tab_size" qualifiers="const">
			<return type="int" />
			<description>
				Returns the [TextEdit]'s' tab size.
			</description>
		</method>
		<method name="get_visible_line_count" qualifiers="const">
			<return type="int" />
			<description>
				Returns the number of visible lines, including wrapped text.
			</description>
		</method>
		<method name="get_word_under_cursor" qualifiers="const">
			<return type="String" />
			<description>
				Returns a [String] text with the word under the caret (text cursor) location.
			</description>
		</method>
		<method name="insert_text_at_cursor">
			<return type="void" />
			<argument index="0" name="text" type="String" />
			<description>
				Insert the specified text at the cursor position.
			</description>
		</method>
		<method name="is_caret_visible" qualifiers="const">
			<return type="bool" />
			<description>
				Returns [code]true[/code] if the caret is visible on the screen.
			</description>
		</method>
		<method name="is_gutter_clickable" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="is_gutter_drawn" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="is_gutter_overwritable" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="is_line_gutter_clickable" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="is_menu_visible" qualifiers="const">
			<return type="bool" />
			<description>
				Returns whether the menu is visible. Use this instead of [code]get_menu().visible[/code] to improve performance (so the creation of the menu is avoided).
			</description>
		</method>
		<method name="is_selection_active" qualifiers="const">
			<return type="bool" />
			<description>
				Returns [code]true[/code] if the selection is active.
			</description>
		</method>
		<method name="menu_option">
			<return type="void" />
			<argument index="0" name="option" type="int" />
			<description>
				Triggers a right-click menu action by the specified index. See [enum MenuItems] for a list of available indexes.
			</description>
		</method>
		<method name="merge_gutters">
			<return type="void" />
			<argument index="0" name="from_line" type="int" />
			<argument index="1" name="to_line" type="int" />
			<description>
			</description>
		</method>
		<method name="paste">
			<return type="void" />
			<description>
				Paste the current selection.
			</description>
		</method>
		<method name="redo">
			<return type="void" />
			<description>
				Perform redo operation.
			</description>
		</method>
		<method name="remove_gutter">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<description>
			</description>
		</method>
		<method name="search" qualifiers="const">
			<return type="Dictionary" />
			<argument index="0" name="key" type="String" />
			<argument index="1" name="flags" type="int" />
			<argument index="2" name="from_line" type="int" />
			<argument index="3" name="from_column" type="int" />
			<description>
				Perform a search inside the text. Search flags can be specified in the [enum SearchFlags] enum.
				Returns an empty [code]Dictionary[/code] if no result was found. Otherwise, returns a [code]Dictionary[/code] containing [code]line[/code] and [code]column[/code] entries, e.g:
				[codeblocks]
				[gdscript]
				var result = search("print", SEARCH_WHOLE_WORDS, 0, 0)
				if !result.empty():
				    # Result found.
				    var line_number = result.line
				    var column_number = result.column
				[/gdscript]
				[csharp]
				int[] result = Search("print", (uint)TextEdit.SearchFlags.WholeWords, 0, 0);
				if (result.Length &gt; 0)
				{
				    // Result found.
				    int lineNumber = result[(int)TextEdit.SearchResult.Line];
				    int columnNumber = result[(int)TextEdit.SearchResult.Column];
				}
				[/csharp]
				[/codeblocks]
			</description>
		</method>
		<method name="select">
			<return type="void" />
			<argument index="0" name="from_line" type="int" />
			<argument index="1" name="from_column" type="int" />
			<argument index="2" name="to_line" type="int" />
			<argument index="3" name="to_column" type="int" />
			<description>
				Perform selection, from line/column to line/column.
				If [member selecting_enabled] is [code]false[/code], no selection will occur.
			</description>
		</method>
		<method name="select_all">
			<return type="void" />
			<description>
				Select all the text.
				If [member selecting_enabled] is [code]false[/code], no selection will occur.
			</description>
		</method>
		<method name="set_gutter_clickable">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<argument index="1" name="clickable" type="bool" />
			<description>
			</description>
		</method>
		<method name="set_gutter_custom_draw">
			<return type="void" />
			<argument index="0" name="column" type="int" />
			<argument index="1" name="object" type="Object" />
			<argument index="2" name="callback" type="StringName" />
			<description>
			</description>
		</method>
		<method name="set_gutter_draw">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<argument index="1" name="draw" type="bool" />
			<description>
			</description>
		</method>
		<method name="set_gutter_name">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<argument index="1" name="name" type="String" />
			<description>
			</description>
		</method>
		<method name="set_gutter_overwritable">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<argument index="1" name="overwritable" type="bool" />
			<description>
			</description>
		</method>
		<method name="set_gutter_type">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<argument index="1" name="type" type="int" enum="TextEdit.GutterType" />
			<description>
			</description>
		</method>
		<method name="set_gutter_width">
			<return type="void" />
			<argument index="0" name="gutter" type="int" />
			<argument index="1" name="width" type="int" />
			<description>
			</description>
		</method>
		<method name="set_line">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="new_text" type="String" />
			<description>
				Sets the text for a specific line.
			</description>
		</method>
		<method name="set_line_background_color">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="color" type="Color" />
			<description>
				Sets the current background color of the line. Set to [code]Color(0, 0, 0, 0)[/code] for no color.
			</description>
		</method>
		<method name="set_line_gutter_clickable">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<argument index="2" name="clickable" type="bool" />
			<description>
			</description>
		</method>
		<method name="set_line_gutter_icon">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<argument index="2" name="icon" type="Texture2D" />
			<description>
			</description>
		</method>
		<method name="set_line_gutter_item_color">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<argument index="2" name="color" type="Color" />
			<description>
			</description>
		</method>
		<method name="set_line_gutter_metadata">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<argument index="2" name="metadata" type="Variant" />
			<description>
			</description>
		</method>
		<method name="set_line_gutter_text">
			<return type="void" />
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<argument index="2" name="text" type="String" />
			<description>
			</description>
		</method>
		<method name="set_opentype_feature">
			<return type="void" />
			<argument index="0" name="tag" type="String" />
			<argument index="1" name="value" type="int" />
			<description>
				Sets OpenType feature [code]tag[/code]. More info: [url=https://docs.microsoft.com/en-us/typography/opentype/spec/featuretags]OpenType feature tags[/url].
			</description>
		</method>
		<method name="set_selection_mode">
			<return type="void" />
			<argument index="0" name="mode" type="int" enum="TextEdit.SelectionMode" />
			<argument index="1" name="line" type="int" default="-1" />
			<argument index="2" name="column" type="int" default="-1" />
			<description>
			</description>
		</method>
		<method name="set_tab_size">
			<return type="void" />
			<argument index="0" name="size" type="int" />
			<description>
				Sets the tab size for the [TextEdit] to use.
			</description>
		</method>
		<method name="undo">
			<return type="void" />
			<description>
				Perform undo operation.
			</description>
		</method>
	</methods>
	<members>
		<member name="caret_blink" type="bool" setter="cursor_set_blink_enabled" getter="cursor_get_blink_enabled" default="false">
			If [code]true[/code], the caret (visual cursor) blinks.
		</member>
		<member name="caret_blink_speed" type="float" setter="cursor_set_blink_speed" getter="cursor_get_blink_speed" default="0.65">
			Duration (in seconds) of a caret's blinking cycle.
		</member>
		<member name="caret_block_mode" type="bool" setter="cursor_set_block_mode" getter="cursor_is_block_mode" default="false">
			If [code]true[/code], the caret displays as a rectangle.
			If [code]false[/code], the caret displays as a bar.
		</member>
		<member name="caret_mid_grapheme" type="bool" setter="set_mid_grapheme_caret_enabled" getter="get_mid_grapheme_caret_enabled" default="false">
			Allow moving caret, selecting and removing the individual composite character components.
			Note: [kbd]Backspace[/kbd] is always removing individual composite character components.
		</member>
		<member name="caret_moving_by_right_click" type="bool" setter="set_right_click_moves_caret" getter="is_right_click_moving_caret" default="true">
			If [code]true[/code], a right-click moves the cursor at the mouse position before displaying the context menu.
			If [code]false[/code], the context menu disregards mouse location.
		</member>
		<member name="context_menu_enabled" type="bool" setter="set_context_menu_enabled" getter="is_context_menu_enabled" default="true">
			If [code]true[/code], a right-click displays the context menu.
		</member>
		<member name="draw_control_chars" type="bool" setter="set_draw_control_chars" getter="get_draw_control_chars" default="false">
			If [code]true[/code], control characters are displayed.
		</member>
		<member name="draw_spaces" type="bool" setter="set_draw_spaces" getter="is_drawing_spaces" default="false">
			If [code]true[/code], the "space" character will have a visible representation.
		</member>
		<member name="draw_tabs" type="bool" setter="set_draw_tabs" getter="is_drawing_tabs" default="false">
			If [code]true[/code], the "tab" character will have a visible representation.
		</member>
		<member name="focus_mode" type="int" setter="set_focus_mode" getter="get_focus_mode" override="true" enum="Control.FocusMode" default="2" />
		<member name="highlight_all_occurrences" type="bool" setter="set_highlight_all_occurrences" getter="is_highlight_all_occurrences_enabled" default="false">
			If [code]true[/code], all occurrences of the selected text will be highlighted.
		</member>
		<member name="highlight_current_line" type="bool" setter="set_highlight_current_line" getter="is_highlight_current_line_enabled" default="false">
			If [code]true[/code], the line containing the cursor is highlighted.
		</member>
		<member name="language" type="String" setter="set_language" getter="get_language" default="&quot;&quot;">
			Language code used for line-breaking and text shaping algorithms, if left empty current locale is used instead.
		</member>
		<member name="minimap_draw" type="bool" setter="draw_minimap" getter="is_drawing_minimap" default="false">
			If [code]true[/code], a minimap is shown, providing an outline of your source code.
		</member>
		<member name="minimap_width" type="int" setter="set_minimap_width" getter="get_minimap_width" default="80">
			The width, in pixels, of the minimap.
		</member>
		<member name="mouse_default_cursor_shape" type="int" setter="set_default_cursor_shape" getter="get_default_cursor_shape" override="true" enum="Control.CursorShape" default="1" />
		<member name="override_selected_font_color" type="bool" setter="set_override_selected_font_color" getter="is_overriding_selected_font_color" default="false">
			If [code]true[/code], custom [code]font_selected_color[/code] will be used for selected text.
		</member>
		<member name="readonly" type="bool" setter="set_readonly" getter="is_readonly" default="false">
			If [code]true[/code], read-only mode is enabled. Existing text cannot be modified and new text cannot be added.
		</member>
		<member name="scroll_horizontal" type="int" setter="set_h_scroll" getter="get_h_scroll" default="0">
			If there is a horizontal scrollbar, this determines the current horizontal scroll value in pixels.
		</member>
		<member name="scroll_vertical" type="float" setter="set_v_scroll" getter="get_v_scroll" default="0.0">
			If there is a vertical scrollbar, this determines the current vertical scroll value in line numbers, starting at 0 for the top line.
		</member>
		<member name="selecting_enabled" type="bool" setter="set_selecting_enabled" getter="is_selecting_enabled" default="true">
			If [code]true[/code], text can be selected.
			If [code]false[/code], text can not be selected by the user or by the [method select] or [method select_all] methods.
		</member>
		<member name="shortcut_keys_enabled" type="bool" setter="set_shortcut_keys_enabled" getter="is_shortcut_keys_enabled" default="true">
			If [code]true[/code], shortcut keys for context menu items are enabled, even if the context menu is disabled.
		</member>
		<member name="smooth_scrolling" type="bool" setter="set_smooth_scroll_enable" getter="is_smooth_scroll_enabled" default="false">
			If [code]true[/code], sets the [code]step[/code] of the scrollbars to [code]0.25[/code] which results in smoother scrolling.
		</member>
		<member name="structured_text_bidi_override" type="int" setter="set_structured_text_bidi_override" getter="get_structured_text_bidi_override" enum="Control.StructuredTextParser" default="0">
			Set BiDi algorithm override for the structured text.
		</member>
		<member name="structured_text_bidi_override_options" type="Array" setter="set_structured_text_bidi_override_options" getter="get_structured_text_bidi_override_options" default="[]">
			Set additional options for BiDi override.
		</member>
		<member name="syntax_highlighter" type="SyntaxHighlighter" setter="set_syntax_highlighter" getter="get_syntax_highlighter">
			Sets the [SyntaxHighlighter] to use.
		</member>
		<member name="text" type="String" setter="set_text" getter="get_text" default="&quot;&quot;">
			String value of the [TextEdit].
		</member>
		<member name="text_direction" type="int" setter="set_text_direction" getter="get_text_direction" enum="Control.TextDirection" default="0">
			Base text writing direction.
		</member>
		<member name="v_scroll_speed" type="float" setter="set_v_scroll_speed" getter="get_v_scroll_speed" default="80.0">
			Vertical scroll sensitivity.
		</member>
		<member name="virtual_keyboard_enabled" type="bool" setter="set_virtual_keyboard_enabled" getter="is_virtual_keyboard_enabled" default="true">
			If [code]true[/code], the native virtual keyboard is shown when focused on platforms that support it.
		</member>
		<member name="wrap_enabled" type="bool" setter="set_wrap_enabled" getter="is_wrap_enabled" default="false">
			If [code]true[/code], enables text wrapping when it goes beyond the edge of what is visible.
		</member>
	</members>
	<signals>
		<signal name="cursor_changed">
			<description>
				Emitted when the cursor changes.
			</description>
		</signal>
		<signal name="gutter_added">
			<description>
			</description>
		</signal>
		<signal name="gutter_clicked">
			<argument index="0" name="line" type="int" />
			<argument index="1" name="gutter" type="int" />
			<description>
			</description>
		</signal>
		<signal name="gutter_removed">
			<description>
			</description>
		</signal>
		<signal name="lines_edited_from">
			<argument index="0" name="from_line" type="int" />
			<argument index="1" name="to_line" type="int" />
			<description>
			</description>
		</signal>
		<signal name="symbol_lookup">
			<argument index="0" name="symbol" type="String" />
			<argument index="1" name="row" type="int" />
			<argument index="2" name="column" type="int" />
			<description>
			</description>
		</signal>
		<signal name="symbol_validate">
			<argument index="0" name="symbol" type="String" />
			<description>
			</description>
		</signal>
		<signal name="text_changed">
			<description>
				Emitted when the text changes.
			</description>
		</signal>
	</signals>
	<constants>
		<constant name="SEARCH_MATCH_CASE" value="1" enum="SearchFlags">
			Match case when searching.
		</constant>
		<constant name="SEARCH_WHOLE_WORDS" value="2" enum="SearchFlags">
			Match whole words when searching.
		</constant>
		<constant name="SEARCH_BACKWARDS" value="4" enum="SearchFlags">
			Search from end to beginning.
		</constant>
		<constant name="SELECTION_MODE_NONE" value="0" enum="SelectionMode">
		</constant>
		<constant name="SELECTION_MODE_SHIFT" value="1" enum="SelectionMode">
		</constant>
		<constant name="SELECTION_MODE_POINTER" value="2" enum="SelectionMode">
		</constant>
		<constant name="SELECTION_MODE_WORD" value="3" enum="SelectionMode">
		</constant>
		<constant name="SELECTION_MODE_LINE" value="4" enum="SelectionMode">
		</constant>
		<constant name="GUTTER_TYPE_STRING" value="0" enum="GutterType">
		</constant>
		<constant name="GUTTER_TYPE_ICON" value="1" enum="GutterType">
		</constant>
		<constant name="GUTTER_TYPE_CUSTOM" value="2" enum="GutterType">
		</constant>
		<constant name="MENU_CUT" value="0" enum="MenuItems">
			Cuts (copies and clears) the selected text.
		</constant>
		<constant name="MENU_COPY" value="1" enum="MenuItems">
			Copies the selected text.
		</constant>
		<constant name="MENU_PASTE" value="2" enum="MenuItems">
			Pastes the clipboard text over the selected text (or at the cursor's position).
		</constant>
		<constant name="MENU_CLEAR" value="3" enum="MenuItems">
			Erases the whole [TextEdit] text.
		</constant>
		<constant name="MENU_SELECT_ALL" value="4" enum="MenuItems">
			Selects the whole [TextEdit] text.
		</constant>
		<constant name="MENU_UNDO" value="5" enum="MenuItems">
			Undoes the previous action.
		</constant>
		<constant name="MENU_REDO" value="6" enum="MenuItems">
			Redoes the previous action.
		</constant>
		<constant name="MENU_DIR_INHERITED" value="7" enum="MenuItems">
			Sets text direction to inherited.
		</constant>
		<constant name="MENU_DIR_AUTO" value="8" enum="MenuItems">
			Sets text direction to automatic.
		</constant>
		<constant name="MENU_DIR_LTR" value="9" enum="MenuItems">
			Sets text direction to left-to-right.
		</constant>
		<constant name="MENU_DIR_RTL" value="10" enum="MenuItems">
			Sets text direction to right-to-left.
		</constant>
		<constant name="MENU_DISPLAY_UCC" value="11" enum="MenuItems">
			Toggles control character display.
		</constant>
		<constant name="MENU_INSERT_LRM" value="12" enum="MenuItems">
			Inserts left-to-right mark (LRM) character.
		</constant>
		<constant name="MENU_INSERT_RLM" value="13" enum="MenuItems">
			Inserts right-to-left mark (RLM) character.
		</constant>
		<constant name="MENU_INSERT_LRE" value="14" enum="MenuItems">
			Inserts start of left-to-right embedding (LRE) character.
		</constant>
		<constant name="MENU_INSERT_RLE" value="15" enum="MenuItems">
			Inserts start of right-to-left embedding (RLE) character.
		</constant>
		<constant name="MENU_INSERT_LRO" value="16" enum="MenuItems">
			Inserts start of left-to-right override (LRO) character.
		</constant>
		<constant name="MENU_INSERT_RLO" value="17" enum="MenuItems">
			Inserts start of right-to-left override (RLO) character.
		</constant>
		<constant name="MENU_INSERT_PDF" value="18" enum="MenuItems">
			Inserts pop direction formatting (PDF) character.
		</constant>
		<constant name="MENU_INSERT_ALM" value="19" enum="MenuItems">
			Inserts Arabic letter mark (ALM) character.
		</constant>
		<constant name="MENU_INSERT_LRI" value="20" enum="MenuItems">
			Inserts left-to-right isolate (LRI) character.
		</constant>
		<constant name="MENU_INSERT_RLI" value="21" enum="MenuItems">
			Inserts right-to-left isolate (RLI) character.
		</constant>
		<constant name="MENU_INSERT_FSI" value="22" enum="MenuItems">
			Inserts first strong isolate (FSI) character.
		</constant>
		<constant name="MENU_INSERT_PDI" value="23" enum="MenuItems">
			Inserts pop direction isolate (PDI) character.
		</constant>
		<constant name="MENU_INSERT_ZWJ" value="24" enum="MenuItems">
			Inserts zero width joiner (ZWJ) character.
		</constant>
		<constant name="MENU_INSERT_ZWNJ" value="25" enum="MenuItems">
			Inserts zero width non-joiner (ZWNJ) character.
		</constant>
		<constant name="MENU_INSERT_WJ" value="26" enum="MenuItems">
			Inserts word joiner (WJ) character.
		</constant>
		<constant name="MENU_INSERT_SHY" value="27" enum="MenuItems">
			Inserts soft hyphen (SHY) character.
		</constant>
		<constant name="MENU_MAX" value="28" enum="MenuItems">
			Represents the size of the [enum MenuItems] enum.
		</constant>
	</constants>
	<theme_items>
		<theme_item name="background_color" type="Color" default="Color(0, 0, 0, 0)">
			Sets the background [Color] of this [TextEdit].
		</theme_item>
		<theme_item name="brace_mismatch_color" type="Color" default="Color(1, 0.2, 0.2, 1)">
		</theme_item>
		<theme_item name="caret_background_color" type="Color" default="Color(0, 0, 0, 1)">
		</theme_item>
		<theme_item name="caret_color" type="Color" default="Color(0.88, 0.88, 0.88, 1)">
		</theme_item>
		<theme_item name="current_line_color" type="Color" default="Color(0.25, 0.25, 0.26, 0.8)">
			Sets the [Color] of the breakpoints. [member breakpoint_gutter] has to be enabled.
		</theme_item>
		<theme_item name="focus" type="StyleBox">
		</theme_item>
		<theme_item name="font" type="Font">
			Sets the default [Font].
		</theme_item>
		<theme_item name="font_color" type="Color" default="Color(0.88, 0.88, 0.88, 1)">
			Sets the font [Color].
		</theme_item>
		<theme_item name="font_outline_color" type="Color" default="Color(1, 1, 1, 1)">
			The tint of text outline of the [TextEdit].
		</theme_item>
		<theme_item name="font_readonly_color" type="Color" default="Color(0.88, 0.88, 0.88, 0.5)">
		</theme_item>
		<theme_item name="font_selected_color" type="Color" default="Color(0, 0, 0, 1)">
			Sets the [Color] of the selected text. [member override_selected_font_color] has to be enabled.
		</theme_item>
		<theme_item name="font_size" type="int">
			Sets default font size.
		</theme_item>
		<theme_item name="line_spacing" type="int" default="4">
			Sets the spacing between the lines.
		</theme_item>
		<theme_item name="normal" type="StyleBox">
			Sets the [StyleBox] of this [TextEdit].
		</theme_item>
		<theme_item name="outline_size" type="int" default="0">
			The size of the text outline.
		</theme_item>
		<theme_item name="read_only" type="StyleBox">
			Sets the [StyleBox] of this [TextEdit] when [member readonly] is enabled.
		</theme_item>
		<theme_item name="selection_color" type="Color" default="Color(0.49, 0.49, 0.49, 1)">
			Sets the highlight [Color] of text selections.
		</theme_item>
		<theme_item name="space" type="Texture2D">
			Sets a custom [Texture2D] for space text characters.
		</theme_item>
		<theme_item name="tab" type="Texture2D">
			Sets a custom [Texture2D] for tab text characters.
		</theme_item>
		<theme_item name="word_highlighted_color" type="Color" default="Color(0.8, 0.9, 0.9, 0.15)">
			Sets the highlight [Color] of multiple occurrences. [member highlight_all_occurrences] has to be enabled.
		</theme_item>
	</theme_items>
</class>