1wxStyledTextCtrl(3) Erlang Module Definition wxStyledTextCtrl(3)
2
3
4
6 wxStyledTextCtrl - See external documentation: wxStyledTextCtrl.
7
9 See external documentation: wxStyledTextCtrl.
10
11 This class is derived (and can use functions) from:
12 wxControl
13 wxWindow
14 wxEvtHandler
15
17 wxStyledTextCtrl():
18
19
20 An object reference, The representation is internal and can be
21 changed without notice. It can't be used for comparsion stored on
22 disc or distributed for use on other nodes.
23
25 new() -> wxStyledTextCtrl()
26
27 See external documentation.
28
29 new(Parent) -> wxStyledTextCtrl()
30
31 Types:
32
33 Parent = wxWindow:wxWindow()
34
35 Equivalent to new(Parent, []).
36
37 new(Parent, Options::[Option]) -> wxStyledTextCtrl()
38
39 Types:
40
41 Parent = wxWindow:wxWindow()
42 Option = {id, integer()} | {pos, {X::integer(), Y::inte‐
43 ger()}} | {size, {W::integer(), H::integer()}} | {style,
44 integer()}
45
46 See external documentation.
47
48 create(This, Parent) -> boolean()
49
50 Types:
51
52 This = wxStyledTextCtrl()
53 Parent = wxWindow:wxWindow()
54
55 Equivalent to create(This, Parent, []).
56
57 create(This, Parent, Options::[Option]) -> boolean()
58
59 Types:
60
61 This = wxStyledTextCtrl()
62 Parent = wxWindow:wxWindow()
63 Option = {id, integer()} | {pos, {X::integer(), Y::inte‐
64 ger()}} | {size, {W::integer(), H::integer()}} | {style,
65 integer()}
66
67 See external documentation.
68
69 addText(This, Text) -> ok
70
71 Types:
72
73 This = wxStyledTextCtrl()
74 Text = unicode:chardata()
75
76 See external documentation.
77
78 addStyledText(This, Data) -> ok
79
80 Types:
81
82 This = wxStyledTextCtrl()
83 Data = wx:wx_object()
84
85 See external documentation.
86
87 insertText(This, Pos, Text) -> ok
88
89 Types:
90
91 This = wxStyledTextCtrl()
92 Pos = integer()
93 Text = unicode:chardata()
94
95 See external documentation.
96
97 clearAll(This) -> ok
98
99 Types:
100
101 This = wxStyledTextCtrl()
102
103 See external documentation.
104
105 clearDocumentStyle(This) -> ok
106
107 Types:
108
109 This = wxStyledTextCtrl()
110
111 See external documentation.
112
113 getLength(This) -> integer()
114
115 Types:
116
117 This = wxStyledTextCtrl()
118
119 See external documentation.
120
121 getCharAt(This, Pos) -> integer()
122
123 Types:
124
125 This = wxStyledTextCtrl()
126 Pos = integer()
127
128 See external documentation.
129
130 getCurrentPos(This) -> integer()
131
132 Types:
133
134 This = wxStyledTextCtrl()
135
136 See external documentation.
137
138 getAnchor(This) -> integer()
139
140 Types:
141
142 This = wxStyledTextCtrl()
143
144 See external documentation.
145
146 getStyleAt(This, Pos) -> integer()
147
148 Types:
149
150 This = wxStyledTextCtrl()
151 Pos = integer()
152
153 See external documentation.
154
155 redo(This) -> ok
156
157 Types:
158
159 This = wxStyledTextCtrl()
160
161 See external documentation.
162
163 setUndoCollection(This, CollectUndo) -> ok
164
165 Types:
166
167 This = wxStyledTextCtrl()
168 CollectUndo = boolean()
169
170 See external documentation.
171
172 selectAll(This) -> ok
173
174 Types:
175
176 This = wxStyledTextCtrl()
177
178 See external documentation.
179
180 setSavePoint(This) -> ok
181
182 Types:
183
184 This = wxStyledTextCtrl()
185
186 See external documentation.
187
188 getStyledText(This, StartPos, EndPos) -> wx:wx_object()
189
190 Types:
191
192 This = wxStyledTextCtrl()
193 StartPos = integer()
194 EndPos = integer()
195
196 See external documentation.
197
198 canRedo(This) -> boolean()
199
200 Types:
201
202 This = wxStyledTextCtrl()
203
204 See external documentation.
205
206 markerLineFromHandle(This, Handle) -> integer()
207
208 Types:
209
210 This = wxStyledTextCtrl()
211 Handle = integer()
212
213 See external documentation.
214
215 markerDeleteHandle(This, Handle) -> ok
216
217 Types:
218
219 This = wxStyledTextCtrl()
220 Handle = integer()
221
222 See external documentation.
223
224 getUndoCollection(This) -> boolean()
225
226 Types:
227
228 This = wxStyledTextCtrl()
229
230 See external documentation.
231
232 getViewWhiteSpace(This) -> integer()
233
234 Types:
235
236 This = wxStyledTextCtrl()
237
238 See external documentation.
239
240 setViewWhiteSpace(This, ViewWS) -> ok
241
242 Types:
243
244 This = wxStyledTextCtrl()
245 ViewWS = integer()
246
247 See external documentation.
248
249 positionFromPoint(This, Pt) -> integer()
250
251 Types:
252
253 This = wxStyledTextCtrl()
254 Pt = {X::integer(), Y::integer()}
255
256 See external documentation.
257
258 positionFromPointClose(This, X, Y) -> integer()
259
260 Types:
261
262 This = wxStyledTextCtrl()
263 X = integer()
264 Y = integer()
265
266 See external documentation.
267
268 gotoLine(This, Line) -> ok
269
270 Types:
271
272 This = wxStyledTextCtrl()
273 Line = integer()
274
275 See external documentation.
276
277 gotoPos(This, Pos) -> ok
278
279 Types:
280
281 This = wxStyledTextCtrl()
282 Pos = integer()
283
284 See external documentation.
285
286 setAnchor(This, PosAnchor) -> ok
287
288 Types:
289
290 This = wxStyledTextCtrl()
291 PosAnchor = integer()
292
293 See external documentation.
294
295 getCurLine(This) -> Result
296
297 Types:
298
299 Result = {Res::unicode:charlist(), LinePos::integer()}
300 This = wxStyledTextCtrl()
301
302 See external documentation.
303
304 getEndStyled(This) -> integer()
305
306 Types:
307
308 This = wxStyledTextCtrl()
309
310 See external documentation.
311
312 convertEOLs(This, EolMode) -> ok
313
314 Types:
315
316 This = wxStyledTextCtrl()
317 EolMode = integer()
318
319 See external documentation.
320
321 getEOLMode(This) -> integer()
322
323 Types:
324
325 This = wxStyledTextCtrl()
326
327 See external documentation.
328
329 setEOLMode(This, EolMode) -> ok
330
331 Types:
332
333 This = wxStyledTextCtrl()
334 EolMode = integer()
335
336 See external documentation.
337
338 startStyling(This, Pos, Mask) -> ok
339
340 Types:
341
342 This = wxStyledTextCtrl()
343 Pos = integer()
344 Mask = integer()
345
346 See external documentation.
347
348 setStyling(This, Length, Style) -> ok
349
350 Types:
351
352 This = wxStyledTextCtrl()
353 Length = integer()
354 Style = integer()
355
356 See external documentation.
357
358 getBufferedDraw(This) -> boolean()
359
360 Types:
361
362 This = wxStyledTextCtrl()
363
364 See external documentation.
365
366 setBufferedDraw(This, Buffered) -> ok
367
368 Types:
369
370 This = wxStyledTextCtrl()
371 Buffered = boolean()
372
373 See external documentation.
374
375 setTabWidth(This, TabWidth) -> ok
376
377 Types:
378
379 This = wxStyledTextCtrl()
380 TabWidth = integer()
381
382 See external documentation.
383
384 getTabWidth(This) -> integer()
385
386 Types:
387
388 This = wxStyledTextCtrl()
389
390 See external documentation.
391
392 setCodePage(This, CodePage) -> ok
393
394 Types:
395
396 This = wxStyledTextCtrl()
397 CodePage = integer()
398
399 See external documentation.
400
401 markerDefine(This, MarkerNumber, MarkerSymbol) -> ok
402
403 Types:
404
405 This = wxStyledTextCtrl()
406 MarkerNumber = integer()
407 MarkerSymbol = integer()
408
409 Equivalent to markerDefine(This, MarkerNumber, MarkerSymbol,
410 []).
411
412 markerDefine(This, MarkerNumber, MarkerSymbol, Options::[Option]) -> ok
413
414 Types:
415
416 This = wxStyledTextCtrl()
417 MarkerNumber = integer()
418 MarkerSymbol = integer()
419 Option = {foreground, wx:wx_colour()} | {background,
420 wx:wx_colour()}
421
422 See external documentation.
423
424 markerSetForeground(This, MarkerNumber, Fore) -> ok
425
426 Types:
427
428 This = wxStyledTextCtrl()
429 MarkerNumber = integer()
430 Fore = wx:wx_colour()
431
432 See external documentation.
433
434 markerSetBackground(This, MarkerNumber, Back) -> ok
435
436 Types:
437
438 This = wxStyledTextCtrl()
439 MarkerNumber = integer()
440 Back = wx:wx_colour()
441
442 See external documentation.
443
444 markerAdd(This, Line, MarkerNumber) -> integer()
445
446 Types:
447
448 This = wxStyledTextCtrl()
449 Line = integer()
450 MarkerNumber = integer()
451
452 See external documentation.
453
454 markerDelete(This, Line, MarkerNumber) -> ok
455
456 Types:
457
458 This = wxStyledTextCtrl()
459 Line = integer()
460 MarkerNumber = integer()
461
462 See external documentation.
463
464 markerDeleteAll(This, MarkerNumber) -> ok
465
466 Types:
467
468 This = wxStyledTextCtrl()
469 MarkerNumber = integer()
470
471 See external documentation.
472
473 markerGet(This, Line) -> integer()
474
475 Types:
476
477 This = wxStyledTextCtrl()
478 Line = integer()
479
480 See external documentation.
481
482 markerNext(This, LineStart, MarkerMask) -> integer()
483
484 Types:
485
486 This = wxStyledTextCtrl()
487 LineStart = integer()
488 MarkerMask = integer()
489
490 See external documentation.
491
492 markerPrevious(This, LineStart, MarkerMask) -> integer()
493
494 Types:
495
496 This = wxStyledTextCtrl()
497 LineStart = integer()
498 MarkerMask = integer()
499
500 See external documentation.
501
502 markerDefineBitmap(This, MarkerNumber, Bmp) -> ok
503
504 Types:
505
506 This = wxStyledTextCtrl()
507 MarkerNumber = integer()
508 Bmp = wxBitmap:wxBitmap()
509
510 See external documentation.
511
512 markerAddSet(This, Line, Set) -> ok
513
514 Types:
515
516 This = wxStyledTextCtrl()
517 Line = integer()
518 Set = integer()
519
520 See external documentation.
521
522 markerSetAlpha(This, MarkerNumber, Alpha) -> ok
523
524 Types:
525
526 This = wxStyledTextCtrl()
527 MarkerNumber = integer()
528 Alpha = integer()
529
530 See external documentation.
531
532 setMarginType(This, Margin, MarginType) -> ok
533
534 Types:
535
536 This = wxStyledTextCtrl()
537 Margin = integer()
538 MarginType = integer()
539
540 See external documentation.
541
542 getMarginType(This, Margin) -> integer()
543
544 Types:
545
546 This = wxStyledTextCtrl()
547 Margin = integer()
548
549 See external documentation.
550
551 setMarginWidth(This, Margin, PixelWidth) -> ok
552
553 Types:
554
555 This = wxStyledTextCtrl()
556 Margin = integer()
557 PixelWidth = integer()
558
559 See external documentation.
560
561 getMarginWidth(This, Margin) -> integer()
562
563 Types:
564
565 This = wxStyledTextCtrl()
566 Margin = integer()
567
568 See external documentation.
569
570 setMarginMask(This, Margin, Mask) -> ok
571
572 Types:
573
574 This = wxStyledTextCtrl()
575 Margin = integer()
576 Mask = integer()
577
578 See external documentation.
579
580 getMarginMask(This, Margin) -> integer()
581
582 Types:
583
584 This = wxStyledTextCtrl()
585 Margin = integer()
586
587 See external documentation.
588
589 setMarginSensitive(This, Margin, Sensitive) -> ok
590
591 Types:
592
593 This = wxStyledTextCtrl()
594 Margin = integer()
595 Sensitive = boolean()
596
597 See external documentation.
598
599 getMarginSensitive(This, Margin) -> boolean()
600
601 Types:
602
603 This = wxStyledTextCtrl()
604 Margin = integer()
605
606 See external documentation.
607
608 styleClearAll(This) -> ok
609
610 Types:
611
612 This = wxStyledTextCtrl()
613
614 See external documentation.
615
616 styleSetForeground(This, Style, Fore) -> ok
617
618 Types:
619
620 This = wxStyledTextCtrl()
621 Style = integer()
622 Fore = wx:wx_colour()
623
624 See external documentation.
625
626 styleSetBackground(This, Style, Back) -> ok
627
628 Types:
629
630 This = wxStyledTextCtrl()
631 Style = integer()
632 Back = wx:wx_colour()
633
634 See external documentation.
635
636 styleSetBold(This, Style, Bold) -> ok
637
638 Types:
639
640 This = wxStyledTextCtrl()
641 Style = integer()
642 Bold = boolean()
643
644 See external documentation.
645
646 styleSetItalic(This, Style, Italic) -> ok
647
648 Types:
649
650 This = wxStyledTextCtrl()
651 Style = integer()
652 Italic = boolean()
653
654 See external documentation.
655
656 styleSetSize(This, Style, SizePoints) -> ok
657
658 Types:
659
660 This = wxStyledTextCtrl()
661 Style = integer()
662 SizePoints = integer()
663
664 See external documentation.
665
666 styleSetFaceName(This, Style, FontName) -> ok
667
668 Types:
669
670 This = wxStyledTextCtrl()
671 Style = integer()
672 FontName = unicode:chardata()
673
674 See external documentation.
675
676 styleSetEOLFilled(This, Style, Filled) -> ok
677
678 Types:
679
680 This = wxStyledTextCtrl()
681 Style = integer()
682 Filled = boolean()
683
684 See external documentation.
685
686 styleResetDefault(This) -> ok
687
688 Types:
689
690 This = wxStyledTextCtrl()
691
692 See external documentation.
693
694 styleSetUnderline(This, Style, Underline) -> ok
695
696 Types:
697
698 This = wxStyledTextCtrl()
699 Style = integer()
700 Underline = boolean()
701
702 See external documentation.
703
704 styleSetCase(This, Style, CaseForce) -> ok
705
706 Types:
707
708 This = wxStyledTextCtrl()
709 Style = integer()
710 CaseForce = integer()
711
712 See external documentation.
713
714 styleSetHotSpot(This, Style, Hotspot) -> ok
715
716 Types:
717
718 This = wxStyledTextCtrl()
719 Style = integer()
720 Hotspot = boolean()
721
722 See external documentation.
723
724 setSelForeground(This, UseSetting, Fore) -> ok
725
726 Types:
727
728 This = wxStyledTextCtrl()
729 UseSetting = boolean()
730 Fore = wx:wx_colour()
731
732 See external documentation.
733
734 setSelBackground(This, UseSetting, Back) -> ok
735
736 Types:
737
738 This = wxStyledTextCtrl()
739 UseSetting = boolean()
740 Back = wx:wx_colour()
741
742 See external documentation.
743
744 getSelAlpha(This) -> integer()
745
746 Types:
747
748 This = wxStyledTextCtrl()
749
750 See external documentation.
751
752 setSelAlpha(This, Alpha) -> ok
753
754 Types:
755
756 This = wxStyledTextCtrl()
757 Alpha = integer()
758
759 See external documentation.
760
761 setCaretForeground(This, Fore) -> ok
762
763 Types:
764
765 This = wxStyledTextCtrl()
766 Fore = wx:wx_colour()
767
768 See external documentation.
769
770 cmdKeyAssign(This, Key, Modifiers, Cmd) -> ok
771
772 Types:
773
774 This = wxStyledTextCtrl()
775 Key = integer()
776 Modifiers = integer()
777 Cmd = integer()
778
779 See external documentation.
780
781 cmdKeyClear(This, Key, Modifiers) -> ok
782
783 Types:
784
785 This = wxStyledTextCtrl()
786 Key = integer()
787 Modifiers = integer()
788
789 See external documentation.
790
791 cmdKeyClearAll(This) -> ok
792
793 Types:
794
795 This = wxStyledTextCtrl()
796
797 See external documentation.
798
799 setStyleBytes(This, Length) -> integer()
800
801 Types:
802
803 This = wxStyledTextCtrl()
804 Length = integer()
805
806 See external documentation.
807
808 styleSetVisible(This, Style, Visible) -> ok
809
810 Types:
811
812 This = wxStyledTextCtrl()
813 Style = integer()
814 Visible = boolean()
815
816 See external documentation.
817
818 getCaretPeriod(This) -> integer()
819
820 Types:
821
822 This = wxStyledTextCtrl()
823
824 See external documentation.
825
826 setCaretPeriod(This, PeriodMilliseconds) -> ok
827
828 Types:
829
830 This = wxStyledTextCtrl()
831 PeriodMilliseconds = integer()
832
833 See external documentation.
834
835 setWordChars(This, Characters) -> ok
836
837 Types:
838
839 This = wxStyledTextCtrl()
840 Characters = unicode:chardata()
841
842 See external documentation.
843
844 beginUndoAction(This) -> ok
845
846 Types:
847
848 This = wxStyledTextCtrl()
849
850 See external documentation.
851
852 endUndoAction(This) -> ok
853
854 Types:
855
856 This = wxStyledTextCtrl()
857
858 See external documentation.
859
860 indicatorSetStyle(This, Indic, Style) -> ok
861
862 Types:
863
864 This = wxStyledTextCtrl()
865 Indic = integer()
866 Style = integer()
867
868 See external documentation.
869
870 indicatorGetStyle(This, Indic) -> integer()
871
872 Types:
873
874 This = wxStyledTextCtrl()
875 Indic = integer()
876
877 See external documentation.
878
879 indicatorSetForeground(This, Indic, Fore) -> ok
880
881 Types:
882
883 This = wxStyledTextCtrl()
884 Indic = integer()
885 Fore = wx:wx_colour()
886
887 See external documentation.
888
889 indicatorGetForeground(This, Indic) -> wx:wx_colour4()
890
891 Types:
892
893 This = wxStyledTextCtrl()
894 Indic = integer()
895
896 See external documentation.
897
898 setWhitespaceForeground(This, UseSetting, Fore) -> ok
899
900 Types:
901
902 This = wxStyledTextCtrl()
903 UseSetting = boolean()
904 Fore = wx:wx_colour()
905
906 See external documentation.
907
908 setWhitespaceBackground(This, UseSetting, Back) -> ok
909
910 Types:
911
912 This = wxStyledTextCtrl()
913 UseSetting = boolean()
914 Back = wx:wx_colour()
915
916 See external documentation.
917
918 getStyleBits(This) -> integer()
919
920 Types:
921
922 This = wxStyledTextCtrl()
923
924 See external documentation.
925
926 setLineState(This, Line, State) -> ok
927
928 Types:
929
930 This = wxStyledTextCtrl()
931 Line = integer()
932 State = integer()
933
934 See external documentation.
935
936 getLineState(This, Line) -> integer()
937
938 Types:
939
940 This = wxStyledTextCtrl()
941 Line = integer()
942
943 See external documentation.
944
945 getMaxLineState(This) -> integer()
946
947 Types:
948
949 This = wxStyledTextCtrl()
950
951 See external documentation.
952
953 getCaretLineVisible(This) -> boolean()
954
955 Types:
956
957 This = wxStyledTextCtrl()
958
959 See external documentation.
960
961 setCaretLineVisible(This, Show) -> ok
962
963 Types:
964
965 This = wxStyledTextCtrl()
966 Show = boolean()
967
968 See external documentation.
969
970 getCaretLineBackground(This) -> wx:wx_colour4()
971
972 Types:
973
974 This = wxStyledTextCtrl()
975
976 See external documentation.
977
978 setCaretLineBackground(This, Back) -> ok
979
980 Types:
981
982 This = wxStyledTextCtrl()
983 Back = wx:wx_colour()
984
985 See external documentation.
986
987 autoCompShow(This, LenEntered, ItemList) -> ok
988
989 Types:
990
991 This = wxStyledTextCtrl()
992 LenEntered = integer()
993 ItemList = unicode:chardata()
994
995 See external documentation.
996
997 autoCompCancel(This) -> ok
998
999 Types:
1000
1001 This = wxStyledTextCtrl()
1002
1003 See external documentation.
1004
1005 autoCompActive(This) -> boolean()
1006
1007 Types:
1008
1009 This = wxStyledTextCtrl()
1010
1011 See external documentation.
1012
1013 autoCompPosStart(This) -> integer()
1014
1015 Types:
1016
1017 This = wxStyledTextCtrl()
1018
1019 See external documentation.
1020
1021 autoCompComplete(This) -> ok
1022
1023 Types:
1024
1025 This = wxStyledTextCtrl()
1026
1027 See external documentation.
1028
1029 autoCompStops(This, CharacterSet) -> ok
1030
1031 Types:
1032
1033 This = wxStyledTextCtrl()
1034 CharacterSet = unicode:chardata()
1035
1036 See external documentation.
1037
1038 autoCompSetSeparator(This, SeparatorCharacter) -> ok
1039
1040 Types:
1041
1042 This = wxStyledTextCtrl()
1043 SeparatorCharacter = integer()
1044
1045 See external documentation.
1046
1047 autoCompGetSeparator(This) -> integer()
1048
1049 Types:
1050
1051 This = wxStyledTextCtrl()
1052
1053 See external documentation.
1054
1055 autoCompSelect(This, Text) -> ok
1056
1057 Types:
1058
1059 This = wxStyledTextCtrl()
1060 Text = unicode:chardata()
1061
1062 See external documentation.
1063
1064 autoCompSetCancelAtStart(This, Cancel) -> ok
1065
1066 Types:
1067
1068 This = wxStyledTextCtrl()
1069 Cancel = boolean()
1070
1071 See external documentation.
1072
1073 autoCompGetCancelAtStart(This) -> boolean()
1074
1075 Types:
1076
1077 This = wxStyledTextCtrl()
1078
1079 See external documentation.
1080
1081 autoCompSetFillUps(This, CharacterSet) -> ok
1082
1083 Types:
1084
1085 This = wxStyledTextCtrl()
1086 CharacterSet = unicode:chardata()
1087
1088 See external documentation.
1089
1090 autoCompSetChooseSingle(This, ChooseSingle) -> ok
1091
1092 Types:
1093
1094 This = wxStyledTextCtrl()
1095 ChooseSingle = boolean()
1096
1097 See external documentation.
1098
1099 autoCompGetChooseSingle(This) -> boolean()
1100
1101 Types:
1102
1103 This = wxStyledTextCtrl()
1104
1105 See external documentation.
1106
1107 autoCompSetIgnoreCase(This, IgnoreCase) -> ok
1108
1109 Types:
1110
1111 This = wxStyledTextCtrl()
1112 IgnoreCase = boolean()
1113
1114 See external documentation.
1115
1116 autoCompGetIgnoreCase(This) -> boolean()
1117
1118 Types:
1119
1120 This = wxStyledTextCtrl()
1121
1122 See external documentation.
1123
1124 userListShow(This, ListType, ItemList) -> ok
1125
1126 Types:
1127
1128 This = wxStyledTextCtrl()
1129 ListType = integer()
1130 ItemList = unicode:chardata()
1131
1132 See external documentation.
1133
1134 autoCompSetAutoHide(This, AutoHide) -> ok
1135
1136 Types:
1137
1138 This = wxStyledTextCtrl()
1139 AutoHide = boolean()
1140
1141 See external documentation.
1142
1143 autoCompGetAutoHide(This) -> boolean()
1144
1145 Types:
1146
1147 This = wxStyledTextCtrl()
1148
1149 See external documentation.
1150
1151 autoCompSetDropRestOfWord(This, DropRestOfWord) -> ok
1152
1153 Types:
1154
1155 This = wxStyledTextCtrl()
1156 DropRestOfWord = boolean()
1157
1158 See external documentation.
1159
1160 autoCompGetDropRestOfWord(This) -> boolean()
1161
1162 Types:
1163
1164 This = wxStyledTextCtrl()
1165
1166 See external documentation.
1167
1168 registerImage(This, Type, Bmp) -> ok
1169
1170 Types:
1171
1172 This = wxStyledTextCtrl()
1173 Type = integer()
1174 Bmp = wxBitmap:wxBitmap()
1175
1176 See external documentation.
1177
1178 clearRegisteredImages(This) -> ok
1179
1180 Types:
1181
1182 This = wxStyledTextCtrl()
1183
1184 See external documentation.
1185
1186 autoCompGetTypeSeparator(This) -> integer()
1187
1188 Types:
1189
1190 This = wxStyledTextCtrl()
1191
1192 See external documentation.
1193
1194 autoCompSetTypeSeparator(This, SeparatorCharacter) -> ok
1195
1196 Types:
1197
1198 This = wxStyledTextCtrl()
1199 SeparatorCharacter = integer()
1200
1201 See external documentation.
1202
1203 autoCompSetMaxWidth(This, CharacterCount) -> ok
1204
1205 Types:
1206
1207 This = wxStyledTextCtrl()
1208 CharacterCount = integer()
1209
1210 See external documentation.
1211
1212 autoCompGetMaxWidth(This) -> integer()
1213
1214 Types:
1215
1216 This = wxStyledTextCtrl()
1217
1218 See external documentation.
1219
1220 autoCompSetMaxHeight(This, RowCount) -> ok
1221
1222 Types:
1223
1224 This = wxStyledTextCtrl()
1225 RowCount = integer()
1226
1227 See external documentation.
1228
1229 autoCompGetMaxHeight(This) -> integer()
1230
1231 Types:
1232
1233 This = wxStyledTextCtrl()
1234
1235 See external documentation.
1236
1237 setIndent(This, IndentSize) -> ok
1238
1239 Types:
1240
1241 This = wxStyledTextCtrl()
1242 IndentSize = integer()
1243
1244 See external documentation.
1245
1246 getIndent(This) -> integer()
1247
1248 Types:
1249
1250 This = wxStyledTextCtrl()
1251
1252 See external documentation.
1253
1254 setUseTabs(This, UseTabs) -> ok
1255
1256 Types:
1257
1258 This = wxStyledTextCtrl()
1259 UseTabs = boolean()
1260
1261 See external documentation.
1262
1263 getUseTabs(This) -> boolean()
1264
1265 Types:
1266
1267 This = wxStyledTextCtrl()
1268
1269 See external documentation.
1270
1271 setLineIndentation(This, Line, IndentSize) -> ok
1272
1273 Types:
1274
1275 This = wxStyledTextCtrl()
1276 Line = integer()
1277 IndentSize = integer()
1278
1279 See external documentation.
1280
1281 getLineIndentation(This, Line) -> integer()
1282
1283 Types:
1284
1285 This = wxStyledTextCtrl()
1286 Line = integer()
1287
1288 See external documentation.
1289
1290 getLineIndentPosition(This, Line) -> integer()
1291
1292 Types:
1293
1294 This = wxStyledTextCtrl()
1295 Line = integer()
1296
1297 See external documentation.
1298
1299 getColumn(This, Pos) -> integer()
1300
1301 Types:
1302
1303 This = wxStyledTextCtrl()
1304 Pos = integer()
1305
1306 See external documentation.
1307
1308 setUseHorizontalScrollBar(This, Show) -> ok
1309
1310 Types:
1311
1312 This = wxStyledTextCtrl()
1313 Show = boolean()
1314
1315 See external documentation.
1316
1317 getUseHorizontalScrollBar(This) -> boolean()
1318
1319 Types:
1320
1321 This = wxStyledTextCtrl()
1322
1323 See external documentation.
1324
1325 setIndentationGuides(This, Show) -> ok
1326
1327 Types:
1328
1329 This = wxStyledTextCtrl()
1330 Show = boolean()
1331
1332 See external documentation.
1333
1334 getIndentationGuides(This) -> boolean()
1335
1336 Types:
1337
1338 This = wxStyledTextCtrl()
1339
1340 See external documentation.
1341
1342 setHighlightGuide(This, Column) -> ok
1343
1344 Types:
1345
1346 This = wxStyledTextCtrl()
1347 Column = integer()
1348
1349 See external documentation.
1350
1351 getHighlightGuide(This) -> integer()
1352
1353 Types:
1354
1355 This = wxStyledTextCtrl()
1356
1357 See external documentation.
1358
1359 getLineEndPosition(This, Line) -> integer()
1360
1361 Types:
1362
1363 This = wxStyledTextCtrl()
1364 Line = integer()
1365
1366 See external documentation.
1367
1368 getCodePage(This) -> integer()
1369
1370 Types:
1371
1372 This = wxStyledTextCtrl()
1373
1374 See external documentation.
1375
1376 getCaretForeground(This) -> wx:wx_colour4()
1377
1378 Types:
1379
1380 This = wxStyledTextCtrl()
1381
1382 See external documentation.
1383
1384 getReadOnly(This) -> boolean()
1385
1386 Types:
1387
1388 This = wxStyledTextCtrl()
1389
1390 See external documentation.
1391
1392 setCurrentPos(This, Pos) -> ok
1393
1394 Types:
1395
1396 This = wxStyledTextCtrl()
1397 Pos = integer()
1398
1399 See external documentation.
1400
1401 setSelectionStart(This, Pos) -> ok
1402
1403 Types:
1404
1405 This = wxStyledTextCtrl()
1406 Pos = integer()
1407
1408 See external documentation.
1409
1410 getSelectionStart(This) -> integer()
1411
1412 Types:
1413
1414 This = wxStyledTextCtrl()
1415
1416 See external documentation.
1417
1418 setSelectionEnd(This, Pos) -> ok
1419
1420 Types:
1421
1422 This = wxStyledTextCtrl()
1423 Pos = integer()
1424
1425 See external documentation.
1426
1427 getSelectionEnd(This) -> integer()
1428
1429 Types:
1430
1431 This = wxStyledTextCtrl()
1432
1433 See external documentation.
1434
1435 setPrintMagnification(This, Magnification) -> ok
1436
1437 Types:
1438
1439 This = wxStyledTextCtrl()
1440 Magnification = integer()
1441
1442 See external documentation.
1443
1444 getPrintMagnification(This) -> integer()
1445
1446 Types:
1447
1448 This = wxStyledTextCtrl()
1449
1450 See external documentation.
1451
1452 setPrintColourMode(This, Mode) -> ok
1453
1454 Types:
1455
1456 This = wxStyledTextCtrl()
1457 Mode = integer()
1458
1459 See external documentation.
1460
1461 getPrintColourMode(This) -> integer()
1462
1463 Types:
1464
1465 This = wxStyledTextCtrl()
1466
1467 See external documentation.
1468
1469 findText(This, MinPos, MaxPos, Text) -> integer()
1470
1471 Types:
1472
1473 This = wxStyledTextCtrl()
1474 MinPos = integer()
1475 MaxPos = integer()
1476 Text = unicode:chardata()
1477
1478 Equivalent to findText(This, MinPos, MaxPos, Text, []).
1479
1480 findText(This, MinPos, MaxPos, Text, Options::[Option]) -> integer()
1481
1482 Types:
1483
1484 This = wxStyledTextCtrl()
1485 MinPos = integer()
1486 MaxPos = integer()
1487 Text = unicode:chardata()
1488 Option = {flags, integer()}
1489
1490 See external documentation.
1491
1492 formatRange(This, DoDraw, StartPos, EndPos, Draw, Target, RenderRect,
1493 PageRect) -> integer()
1494
1495 Types:
1496
1497 This = wxStyledTextCtrl()
1498 DoDraw = boolean()
1499 StartPos = integer()
1500 EndPos = integer()
1501 Draw = wxDC:wxDC()
1502 Target = wxDC:wxDC()
1503 RenderRect = {X::integer(), Y::integer(), W::integer(),
1504 H::integer()}
1505 PageRect = {X::integer(), Y::integer(), W::integer(),
1506 H::integer()}
1507
1508 See external documentation.
1509
1510 getFirstVisibleLine(This) -> integer()
1511
1512 Types:
1513
1514 This = wxStyledTextCtrl()
1515
1516 See external documentation.
1517
1518 getLine(This, Line) -> unicode:charlist()
1519
1520 Types:
1521
1522 This = wxStyledTextCtrl()
1523 Line = integer()
1524
1525 See external documentation.
1526
1527 getLineCount(This) -> integer()
1528
1529 Types:
1530
1531 This = wxStyledTextCtrl()
1532
1533 See external documentation.
1534
1535 setMarginLeft(This, PixelWidth) -> ok
1536
1537 Types:
1538
1539 This = wxStyledTextCtrl()
1540 PixelWidth = integer()
1541
1542 See external documentation.
1543
1544 getMarginLeft(This) -> integer()
1545
1546 Types:
1547
1548 This = wxStyledTextCtrl()
1549
1550 See external documentation.
1551
1552 setMarginRight(This, PixelWidth) -> ok
1553
1554 Types:
1555
1556 This = wxStyledTextCtrl()
1557 PixelWidth = integer()
1558
1559 See external documentation.
1560
1561 getMarginRight(This) -> integer()
1562
1563 Types:
1564
1565 This = wxStyledTextCtrl()
1566
1567 See external documentation.
1568
1569 getModify(This) -> boolean()
1570
1571 Types:
1572
1573 This = wxStyledTextCtrl()
1574
1575 See external documentation.
1576
1577 setSelection(This, Start, End) -> ok
1578
1579 Types:
1580
1581 This = wxStyledTextCtrl()
1582 Start = integer()
1583 End = integer()
1584
1585 See external documentation.
1586
1587 getSelectedText(This) -> unicode:charlist()
1588
1589 Types:
1590
1591 This = wxStyledTextCtrl()
1592
1593 See external documentation.
1594
1595 getTextRange(This, StartPos, EndPos) -> unicode:charlist()
1596
1597 Types:
1598
1599 This = wxStyledTextCtrl()
1600 StartPos = integer()
1601 EndPos = integer()
1602
1603 See external documentation.
1604
1605 hideSelection(This, Normal) -> ok
1606
1607 Types:
1608
1609 This = wxStyledTextCtrl()
1610 Normal = boolean()
1611
1612 See external documentation.
1613
1614 lineFromPosition(This, Pos) -> integer()
1615
1616 Types:
1617
1618 This = wxStyledTextCtrl()
1619 Pos = integer()
1620
1621 See external documentation.
1622
1623 positionFromLine(This, Line) -> integer()
1624
1625 Types:
1626
1627 This = wxStyledTextCtrl()
1628 Line = integer()
1629
1630 See external documentation.
1631
1632 lineScroll(This, Columns, Lines) -> ok
1633
1634 Types:
1635
1636 This = wxStyledTextCtrl()
1637 Columns = integer()
1638 Lines = integer()
1639
1640 See external documentation.
1641
1642 ensureCaretVisible(This) -> ok
1643
1644 Types:
1645
1646 This = wxStyledTextCtrl()
1647
1648 See external documentation.
1649
1650 replaceSelection(This, Text) -> ok
1651
1652 Types:
1653
1654 This = wxStyledTextCtrl()
1655 Text = unicode:chardata()
1656
1657 See external documentation.
1658
1659 setReadOnly(This, ReadOnly) -> ok
1660
1661 Types:
1662
1663 This = wxStyledTextCtrl()
1664 ReadOnly = boolean()
1665
1666 See external documentation.
1667
1668 canPaste(This) -> boolean()
1669
1670 Types:
1671
1672 This = wxStyledTextCtrl()
1673
1674 See external documentation.
1675
1676 canUndo(This) -> boolean()
1677
1678 Types:
1679
1680 This = wxStyledTextCtrl()
1681
1682 See external documentation.
1683
1684 emptyUndoBuffer(This) -> ok
1685
1686 Types:
1687
1688 This = wxStyledTextCtrl()
1689
1690 See external documentation.
1691
1692 undo(This) -> ok
1693
1694 Types:
1695
1696 This = wxStyledTextCtrl()
1697
1698 See external documentation.
1699
1700 cut(This) -> ok
1701
1702 Types:
1703
1704 This = wxStyledTextCtrl()
1705
1706 See external documentation.
1707
1708 copy(This) -> ok
1709
1710 Types:
1711
1712 This = wxStyledTextCtrl()
1713
1714 See external documentation.
1715
1716 paste(This) -> ok
1717
1718 Types:
1719
1720 This = wxStyledTextCtrl()
1721
1722 See external documentation.
1723
1724 clear(This) -> ok
1725
1726 Types:
1727
1728 This = wxStyledTextCtrl()
1729
1730 See external documentation.
1731
1732 setText(This, Text) -> ok
1733
1734 Types:
1735
1736 This = wxStyledTextCtrl()
1737 Text = unicode:chardata()
1738
1739 See external documentation.
1740
1741 getText(This) -> unicode:charlist()
1742
1743 Types:
1744
1745 This = wxStyledTextCtrl()
1746
1747 See external documentation.
1748
1749 getTextLength(This) -> integer()
1750
1751 Types:
1752
1753 This = wxStyledTextCtrl()
1754
1755 See external documentation.
1756
1757 getOvertype(This) -> boolean()
1758
1759 Types:
1760
1761 This = wxStyledTextCtrl()
1762
1763 See external documentation.
1764
1765 setCaretWidth(This, PixelWidth) -> ok
1766
1767 Types:
1768
1769 This = wxStyledTextCtrl()
1770 PixelWidth = integer()
1771
1772 See external documentation.
1773
1774 getCaretWidth(This) -> integer()
1775
1776 Types:
1777
1778 This = wxStyledTextCtrl()
1779
1780 See external documentation.
1781
1782 setTargetStart(This, Pos) -> ok
1783
1784 Types:
1785
1786 This = wxStyledTextCtrl()
1787 Pos = integer()
1788
1789 See external documentation.
1790
1791 getTargetStart(This) -> integer()
1792
1793 Types:
1794
1795 This = wxStyledTextCtrl()
1796
1797 See external documentation.
1798
1799 setTargetEnd(This, Pos) -> ok
1800
1801 Types:
1802
1803 This = wxStyledTextCtrl()
1804 Pos = integer()
1805
1806 See external documentation.
1807
1808 getTargetEnd(This) -> integer()
1809
1810 Types:
1811
1812 This = wxStyledTextCtrl()
1813
1814 See external documentation.
1815
1816 replaceTarget(This, Text) -> integer()
1817
1818 Types:
1819
1820 This = wxStyledTextCtrl()
1821 Text = unicode:chardata()
1822
1823 See external documentation.
1824
1825 searchInTarget(This, Text) -> integer()
1826
1827 Types:
1828
1829 This = wxStyledTextCtrl()
1830 Text = unicode:chardata()
1831
1832 See external documentation.
1833
1834 setSearchFlags(This, Flags) -> ok
1835
1836 Types:
1837
1838 This = wxStyledTextCtrl()
1839 Flags = integer()
1840
1841 See external documentation.
1842
1843 getSearchFlags(This) -> integer()
1844
1845 Types:
1846
1847 This = wxStyledTextCtrl()
1848
1849 See external documentation.
1850
1851 callTipShow(This, Pos, Definition) -> ok
1852
1853 Types:
1854
1855 This = wxStyledTextCtrl()
1856 Pos = integer()
1857 Definition = unicode:chardata()
1858
1859 See external documentation.
1860
1861 callTipCancel(This) -> ok
1862
1863 Types:
1864
1865 This = wxStyledTextCtrl()
1866
1867 See external documentation.
1868
1869 callTipActive(This) -> boolean()
1870
1871 Types:
1872
1873 This = wxStyledTextCtrl()
1874
1875 See external documentation.
1876
1877 callTipPosAtStart(This) -> integer()
1878
1879 Types:
1880
1881 This = wxStyledTextCtrl()
1882
1883 See external documentation.
1884
1885 callTipSetHighlight(This, Start, End) -> ok
1886
1887 Types:
1888
1889 This = wxStyledTextCtrl()
1890 Start = integer()
1891 End = integer()
1892
1893 See external documentation.
1894
1895 callTipSetBackground(This, Back) -> ok
1896
1897 Types:
1898
1899 This = wxStyledTextCtrl()
1900 Back = wx:wx_colour()
1901
1902 See external documentation.
1903
1904 callTipSetForeground(This, Fore) -> ok
1905
1906 Types:
1907
1908 This = wxStyledTextCtrl()
1909 Fore = wx:wx_colour()
1910
1911 See external documentation.
1912
1913 callTipSetForegroundHighlight(This, Fore) -> ok
1914
1915 Types:
1916
1917 This = wxStyledTextCtrl()
1918 Fore = wx:wx_colour()
1919
1920 See external documentation.
1921
1922 callTipUseStyle(This, TabSize) -> ok
1923
1924 Types:
1925
1926 This = wxStyledTextCtrl()
1927 TabSize = integer()
1928
1929 See external documentation.
1930
1931 visibleFromDocLine(This, Line) -> integer()
1932
1933 Types:
1934
1935 This = wxStyledTextCtrl()
1936 Line = integer()
1937
1938 See external documentation.
1939
1940 docLineFromVisible(This, LineDisplay) -> integer()
1941
1942 Types:
1943
1944 This = wxStyledTextCtrl()
1945 LineDisplay = integer()
1946
1947 See external documentation.
1948
1949 wrapCount(This, Line) -> integer()
1950
1951 Types:
1952
1953 This = wxStyledTextCtrl()
1954 Line = integer()
1955
1956 See external documentation.
1957
1958 setFoldLevel(This, Line, Level) -> ok
1959
1960 Types:
1961
1962 This = wxStyledTextCtrl()
1963 Line = integer()
1964 Level = integer()
1965
1966 See external documentation.
1967
1968 getFoldLevel(This, Line) -> integer()
1969
1970 Types:
1971
1972 This = wxStyledTextCtrl()
1973 Line = integer()
1974
1975 See external documentation.
1976
1977 getLastChild(This, Line, Level) -> integer()
1978
1979 Types:
1980
1981 This = wxStyledTextCtrl()
1982 Line = integer()
1983 Level = integer()
1984
1985 See external documentation.
1986
1987 getFoldParent(This, Line) -> integer()
1988
1989 Types:
1990
1991 This = wxStyledTextCtrl()
1992 Line = integer()
1993
1994 See external documentation.
1995
1996 showLines(This, LineStart, LineEnd) -> ok
1997
1998 Types:
1999
2000 This = wxStyledTextCtrl()
2001 LineStart = integer()
2002 LineEnd = integer()
2003
2004 See external documentation.
2005
2006 hideLines(This, LineStart, LineEnd) -> ok
2007
2008 Types:
2009
2010 This = wxStyledTextCtrl()
2011 LineStart = integer()
2012 LineEnd = integer()
2013
2014 See external documentation.
2015
2016 getLineVisible(This, Line) -> boolean()
2017
2018 Types:
2019
2020 This = wxStyledTextCtrl()
2021 Line = integer()
2022
2023 See external documentation.
2024
2025 setFoldExpanded(This, Line, Expanded) -> ok
2026
2027 Types:
2028
2029 This = wxStyledTextCtrl()
2030 Line = integer()
2031 Expanded = boolean()
2032
2033 See external documentation.
2034
2035 getFoldExpanded(This, Line) -> boolean()
2036
2037 Types:
2038
2039 This = wxStyledTextCtrl()
2040 Line = integer()
2041
2042 See external documentation.
2043
2044 toggleFold(This, Line) -> ok
2045
2046 Types:
2047
2048 This = wxStyledTextCtrl()
2049 Line = integer()
2050
2051 See external documentation.
2052
2053 ensureVisible(This, Line) -> ok
2054
2055 Types:
2056
2057 This = wxStyledTextCtrl()
2058 Line = integer()
2059
2060 See external documentation.
2061
2062 setFoldFlags(This, Flags) -> ok
2063
2064 Types:
2065
2066 This = wxStyledTextCtrl()
2067 Flags = integer()
2068
2069 See external documentation.
2070
2071 ensureVisibleEnforcePolicy(This, Line) -> ok
2072
2073 Types:
2074
2075 This = wxStyledTextCtrl()
2076 Line = integer()
2077
2078 See external documentation.
2079
2080 setTabIndents(This, TabIndents) -> ok
2081
2082 Types:
2083
2084 This = wxStyledTextCtrl()
2085 TabIndents = boolean()
2086
2087 See external documentation.
2088
2089 getTabIndents(This) -> boolean()
2090
2091 Types:
2092
2093 This = wxStyledTextCtrl()
2094
2095 See external documentation.
2096
2097 setBackSpaceUnIndents(This, BsUnIndents) -> ok
2098
2099 Types:
2100
2101 This = wxStyledTextCtrl()
2102 BsUnIndents = boolean()
2103
2104 See external documentation.
2105
2106 getBackSpaceUnIndents(This) -> boolean()
2107
2108 Types:
2109
2110 This = wxStyledTextCtrl()
2111
2112 See external documentation.
2113
2114 setMouseDwellTime(This, PeriodMilliseconds) -> ok
2115
2116 Types:
2117
2118 This = wxStyledTextCtrl()
2119 PeriodMilliseconds = integer()
2120
2121 See external documentation.
2122
2123 getMouseDwellTime(This) -> integer()
2124
2125 Types:
2126
2127 This = wxStyledTextCtrl()
2128
2129 See external documentation.
2130
2131 wordStartPosition(This, Pos, OnlyWordCharacters) -> integer()
2132
2133 Types:
2134
2135 This = wxStyledTextCtrl()
2136 Pos = integer()
2137 OnlyWordCharacters = boolean()
2138
2139 See external documentation.
2140
2141 wordEndPosition(This, Pos, OnlyWordCharacters) -> integer()
2142
2143 Types:
2144
2145 This = wxStyledTextCtrl()
2146 Pos = integer()
2147 OnlyWordCharacters = boolean()
2148
2149 See external documentation.
2150
2151 setWrapMode(This, Mode) -> ok
2152
2153 Types:
2154
2155 This = wxStyledTextCtrl()
2156 Mode = integer()
2157
2158 See external documentation.
2159
2160 getWrapMode(This) -> integer()
2161
2162 Types:
2163
2164 This = wxStyledTextCtrl()
2165
2166 See external documentation.
2167
2168 setWrapVisualFlags(This, WrapVisualFlags) -> ok
2169
2170 Types:
2171
2172 This = wxStyledTextCtrl()
2173 WrapVisualFlags = integer()
2174
2175 See external documentation.
2176
2177 getWrapVisualFlags(This) -> integer()
2178
2179 Types:
2180
2181 This = wxStyledTextCtrl()
2182
2183 See external documentation.
2184
2185 setWrapVisualFlagsLocation(This, WrapVisualFlagsLocation) -> ok
2186
2187 Types:
2188
2189 This = wxStyledTextCtrl()
2190 WrapVisualFlagsLocation = integer()
2191
2192 See external documentation.
2193
2194 getWrapVisualFlagsLocation(This) -> integer()
2195
2196 Types:
2197
2198 This = wxStyledTextCtrl()
2199
2200 See external documentation.
2201
2202 setWrapStartIndent(This, Indent) -> ok
2203
2204 Types:
2205
2206 This = wxStyledTextCtrl()
2207 Indent = integer()
2208
2209 See external documentation.
2210
2211 getWrapStartIndent(This) -> integer()
2212
2213 Types:
2214
2215 This = wxStyledTextCtrl()
2216
2217 See external documentation.
2218
2219 setLayoutCache(This, Mode) -> ok
2220
2221 Types:
2222
2223 This = wxStyledTextCtrl()
2224 Mode = integer()
2225
2226 See external documentation.
2227
2228 getLayoutCache(This) -> integer()
2229
2230 Types:
2231
2232 This = wxStyledTextCtrl()
2233
2234 See external documentation.
2235
2236 setScrollWidth(This, PixelWidth) -> ok
2237
2238 Types:
2239
2240 This = wxStyledTextCtrl()
2241 PixelWidth = integer()
2242
2243 See external documentation.
2244
2245 getScrollWidth(This) -> integer()
2246
2247 Types:
2248
2249 This = wxStyledTextCtrl()
2250
2251 See external documentation.
2252
2253 textWidth(This, Style, Text) -> integer()
2254
2255 Types:
2256
2257 This = wxStyledTextCtrl()
2258 Style = integer()
2259 Text = unicode:chardata()
2260
2261 See external documentation.
2262
2263 getEndAtLastLine(This) -> boolean()
2264
2265 Types:
2266
2267 This = wxStyledTextCtrl()
2268
2269 See external documentation.
2270
2271 textHeight(This, Line) -> integer()
2272
2273 Types:
2274
2275 This = wxStyledTextCtrl()
2276 Line = integer()
2277
2278 See external documentation.
2279
2280 setUseVerticalScrollBar(This, Show) -> ok
2281
2282 Types:
2283
2284 This = wxStyledTextCtrl()
2285 Show = boolean()
2286
2287 See external documentation.
2288
2289 getUseVerticalScrollBar(This) -> boolean()
2290
2291 Types:
2292
2293 This = wxStyledTextCtrl()
2294
2295 See external documentation.
2296
2297 appendText(This, Text) -> ok
2298
2299 Types:
2300
2301 This = wxStyledTextCtrl()
2302 Text = unicode:chardata()
2303
2304 See external documentation.
2305
2306 getTwoPhaseDraw(This) -> boolean()
2307
2308 Types:
2309
2310 This = wxStyledTextCtrl()
2311
2312 See external documentation.
2313
2314 setTwoPhaseDraw(This, TwoPhase) -> ok
2315
2316 Types:
2317
2318 This = wxStyledTextCtrl()
2319 TwoPhase = boolean()
2320
2321 See external documentation.
2322
2323 targetFromSelection(This) -> ok
2324
2325 Types:
2326
2327 This = wxStyledTextCtrl()
2328
2329 See external documentation.
2330
2331 linesJoin(This) -> ok
2332
2333 Types:
2334
2335 This = wxStyledTextCtrl()
2336
2337 See external documentation.
2338
2339 linesSplit(This, PixelWidth) -> ok
2340
2341 Types:
2342
2343 This = wxStyledTextCtrl()
2344 PixelWidth = integer()
2345
2346 See external documentation.
2347
2348 setFoldMarginColour(This, UseSetting, Back) -> ok
2349
2350 Types:
2351
2352 This = wxStyledTextCtrl()
2353 UseSetting = boolean()
2354 Back = wx:wx_colour()
2355
2356 See external documentation.
2357
2358 setFoldMarginHiColour(This, UseSetting, Fore) -> ok
2359
2360 Types:
2361
2362 This = wxStyledTextCtrl()
2363 UseSetting = boolean()
2364 Fore = wx:wx_colour()
2365
2366 See external documentation.
2367
2368 lineDown(This) -> ok
2369
2370 Types:
2371
2372 This = wxStyledTextCtrl()
2373
2374 See external documentation.
2375
2376 lineDownExtend(This) -> ok
2377
2378 Types:
2379
2380 This = wxStyledTextCtrl()
2381
2382 See external documentation.
2383
2384 lineUp(This) -> ok
2385
2386 Types:
2387
2388 This = wxStyledTextCtrl()
2389
2390 See external documentation.
2391
2392 lineUpExtend(This) -> ok
2393
2394 Types:
2395
2396 This = wxStyledTextCtrl()
2397
2398 See external documentation.
2399
2400 charLeft(This) -> ok
2401
2402 Types:
2403
2404 This = wxStyledTextCtrl()
2405
2406 See external documentation.
2407
2408 charLeftExtend(This) -> ok
2409
2410 Types:
2411
2412 This = wxStyledTextCtrl()
2413
2414 See external documentation.
2415
2416 charRight(This) -> ok
2417
2418 Types:
2419
2420 This = wxStyledTextCtrl()
2421
2422 See external documentation.
2423
2424 charRightExtend(This) -> ok
2425
2426 Types:
2427
2428 This = wxStyledTextCtrl()
2429
2430 See external documentation.
2431
2432 wordLeft(This) -> ok
2433
2434 Types:
2435
2436 This = wxStyledTextCtrl()
2437
2438 See external documentation.
2439
2440 wordLeftExtend(This) -> ok
2441
2442 Types:
2443
2444 This = wxStyledTextCtrl()
2445
2446 See external documentation.
2447
2448 wordRight(This) -> ok
2449
2450 Types:
2451
2452 This = wxStyledTextCtrl()
2453
2454 See external documentation.
2455
2456 wordRightExtend(This) -> ok
2457
2458 Types:
2459
2460 This = wxStyledTextCtrl()
2461
2462 See external documentation.
2463
2464 home(This) -> ok
2465
2466 Types:
2467
2468 This = wxStyledTextCtrl()
2469
2470 See external documentation.
2471
2472 homeExtend(This) -> ok
2473
2474 Types:
2475
2476 This = wxStyledTextCtrl()
2477
2478 See external documentation.
2479
2480 lineEnd(This) -> ok
2481
2482 Types:
2483
2484 This = wxStyledTextCtrl()
2485
2486 See external documentation.
2487
2488 lineEndExtend(This) -> ok
2489
2490 Types:
2491
2492 This = wxStyledTextCtrl()
2493
2494 See external documentation.
2495
2496 documentStart(This) -> ok
2497
2498 Types:
2499
2500 This = wxStyledTextCtrl()
2501
2502 See external documentation.
2503
2504 documentStartExtend(This) -> ok
2505
2506 Types:
2507
2508 This = wxStyledTextCtrl()
2509
2510 See external documentation.
2511
2512 documentEnd(This) -> ok
2513
2514 Types:
2515
2516 This = wxStyledTextCtrl()
2517
2518 See external documentation.
2519
2520 documentEndExtend(This) -> ok
2521
2522 Types:
2523
2524 This = wxStyledTextCtrl()
2525
2526 See external documentation.
2527
2528 pageUp(This) -> ok
2529
2530 Types:
2531
2532 This = wxStyledTextCtrl()
2533
2534 See external documentation.
2535
2536 pageUpExtend(This) -> ok
2537
2538 Types:
2539
2540 This = wxStyledTextCtrl()
2541
2542 See external documentation.
2543
2544 pageDown(This) -> ok
2545
2546 Types:
2547
2548 This = wxStyledTextCtrl()
2549
2550 See external documentation.
2551
2552 pageDownExtend(This) -> ok
2553
2554 Types:
2555
2556 This = wxStyledTextCtrl()
2557
2558 See external documentation.
2559
2560 editToggleOvertype(This) -> ok
2561
2562 Types:
2563
2564 This = wxStyledTextCtrl()
2565
2566 See external documentation.
2567
2568 cancel(This) -> ok
2569
2570 Types:
2571
2572 This = wxStyledTextCtrl()
2573
2574 See external documentation.
2575
2576 deleteBack(This) -> ok
2577
2578 Types:
2579
2580 This = wxStyledTextCtrl()
2581
2582 See external documentation.
2583
2584 tab(This) -> ok
2585
2586 Types:
2587
2588 This = wxStyledTextCtrl()
2589
2590 See external documentation.
2591
2592 backTab(This) -> ok
2593
2594 Types:
2595
2596 This = wxStyledTextCtrl()
2597
2598 See external documentation.
2599
2600 newLine(This) -> ok
2601
2602 Types:
2603
2604 This = wxStyledTextCtrl()
2605
2606 See external documentation.
2607
2608 formFeed(This) -> ok
2609
2610 Types:
2611
2612 This = wxStyledTextCtrl()
2613
2614 See external documentation.
2615
2616 vCHome(This) -> ok
2617
2618 Types:
2619
2620 This = wxStyledTextCtrl()
2621
2622 See external documentation.
2623
2624 vCHomeExtend(This) -> ok
2625
2626 Types:
2627
2628 This = wxStyledTextCtrl()
2629
2630 See external documentation.
2631
2632 zoomIn(This) -> ok
2633
2634 Types:
2635
2636 This = wxStyledTextCtrl()
2637
2638 See external documentation.
2639
2640 zoomOut(This) -> ok
2641
2642 Types:
2643
2644 This = wxStyledTextCtrl()
2645
2646 See external documentation.
2647
2648 delWordLeft(This) -> ok
2649
2650 Types:
2651
2652 This = wxStyledTextCtrl()
2653
2654 See external documentation.
2655
2656 delWordRight(This) -> ok
2657
2658 Types:
2659
2660 This = wxStyledTextCtrl()
2661
2662 See external documentation.
2663
2664 lineCut(This) -> ok
2665
2666 Types:
2667
2668 This = wxStyledTextCtrl()
2669
2670 See external documentation.
2671
2672 lineDelete(This) -> ok
2673
2674 Types:
2675
2676 This = wxStyledTextCtrl()
2677
2678 See external documentation.
2679
2680 lineTranspose(This) -> ok
2681
2682 Types:
2683
2684 This = wxStyledTextCtrl()
2685
2686 See external documentation.
2687
2688 lineDuplicate(This) -> ok
2689
2690 Types:
2691
2692 This = wxStyledTextCtrl()
2693
2694 See external documentation.
2695
2696 lowerCase(This) -> ok
2697
2698 Types:
2699
2700 This = wxStyledTextCtrl()
2701
2702 See external documentation.
2703
2704 upperCase(This) -> ok
2705
2706 Types:
2707
2708 This = wxStyledTextCtrl()
2709
2710 See external documentation.
2711
2712 lineScrollDown(This) -> ok
2713
2714 Types:
2715
2716 This = wxStyledTextCtrl()
2717
2718 See external documentation.
2719
2720 lineScrollUp(This) -> ok
2721
2722 Types:
2723
2724 This = wxStyledTextCtrl()
2725
2726 See external documentation.
2727
2728 deleteBackNotLine(This) -> ok
2729
2730 Types:
2731
2732 This = wxStyledTextCtrl()
2733
2734 See external documentation.
2735
2736 homeDisplay(This) -> ok
2737
2738 Types:
2739
2740 This = wxStyledTextCtrl()
2741
2742 See external documentation.
2743
2744 homeDisplayExtend(This) -> ok
2745
2746 Types:
2747
2748 This = wxStyledTextCtrl()
2749
2750 See external documentation.
2751
2752 lineEndDisplay(This) -> ok
2753
2754 Types:
2755
2756 This = wxStyledTextCtrl()
2757
2758 See external documentation.
2759
2760 lineEndDisplayExtend(This) -> ok
2761
2762 Types:
2763
2764 This = wxStyledTextCtrl()
2765
2766 See external documentation.
2767
2768 homeWrapExtend(This) -> ok
2769
2770 Types:
2771
2772 This = wxStyledTextCtrl()
2773
2774 See external documentation.
2775
2776 lineEndWrap(This) -> ok
2777
2778 Types:
2779
2780 This = wxStyledTextCtrl()
2781
2782 See external documentation.
2783
2784 lineEndWrapExtend(This) -> ok
2785
2786 Types:
2787
2788 This = wxStyledTextCtrl()
2789
2790 See external documentation.
2791
2792 vCHomeWrap(This) -> ok
2793
2794 Types:
2795
2796 This = wxStyledTextCtrl()
2797
2798 See external documentation.
2799
2800 vCHomeWrapExtend(This) -> ok
2801
2802 Types:
2803
2804 This = wxStyledTextCtrl()
2805
2806 See external documentation.
2807
2808 lineCopy(This) -> ok
2809
2810 Types:
2811
2812 This = wxStyledTextCtrl()
2813
2814 See external documentation.
2815
2816 moveCaretInsideView(This) -> ok
2817
2818 Types:
2819
2820 This = wxStyledTextCtrl()
2821
2822 See external documentation.
2823
2824 lineLength(This, Line) -> integer()
2825
2826 Types:
2827
2828 This = wxStyledTextCtrl()
2829 Line = integer()
2830
2831 See external documentation.
2832
2833 braceHighlight(This, Pos1, Pos2) -> ok
2834
2835 Types:
2836
2837 This = wxStyledTextCtrl()
2838 Pos1 = integer()
2839 Pos2 = integer()
2840
2841 See external documentation.
2842
2843 braceBadLight(This, Pos) -> ok
2844
2845 Types:
2846
2847 This = wxStyledTextCtrl()
2848 Pos = integer()
2849
2850 See external documentation.
2851
2852 braceMatch(This, Pos) -> integer()
2853
2854 Types:
2855
2856 This = wxStyledTextCtrl()
2857 Pos = integer()
2858
2859 See external documentation.
2860
2861 getViewEOL(This) -> boolean()
2862
2863 Types:
2864
2865 This = wxStyledTextCtrl()
2866
2867 See external documentation.
2868
2869 setViewEOL(This, Visible) -> ok
2870
2871 Types:
2872
2873 This = wxStyledTextCtrl()
2874 Visible = boolean()
2875
2876 See external documentation.
2877
2878 setModEventMask(This, Mask) -> ok
2879
2880 Types:
2881
2882 This = wxStyledTextCtrl()
2883 Mask = integer()
2884
2885 See external documentation.
2886
2887 getEdgeColumn(This) -> integer()
2888
2889 Types:
2890
2891 This = wxStyledTextCtrl()
2892
2893 See external documentation.
2894
2895 setEdgeColumn(This, Column) -> ok
2896
2897 Types:
2898
2899 This = wxStyledTextCtrl()
2900 Column = integer()
2901
2902 See external documentation.
2903
2904 setEdgeMode(This, Mode) -> ok
2905
2906 Types:
2907
2908 This = wxStyledTextCtrl()
2909 Mode = integer()
2910
2911 See external documentation.
2912
2913 getEdgeMode(This) -> integer()
2914
2915 Types:
2916
2917 This = wxStyledTextCtrl()
2918
2919 See external documentation.
2920
2921 getEdgeColour(This) -> wx:wx_colour4()
2922
2923 Types:
2924
2925 This = wxStyledTextCtrl()
2926
2927 See external documentation.
2928
2929 setEdgeColour(This, EdgeColour) -> ok
2930
2931 Types:
2932
2933 This = wxStyledTextCtrl()
2934 EdgeColour = wx:wx_colour()
2935
2936 See external documentation.
2937
2938 searchAnchor(This) -> ok
2939
2940 Types:
2941
2942 This = wxStyledTextCtrl()
2943
2944 See external documentation.
2945
2946 searchNext(This, Flags, Text) -> integer()
2947
2948 Types:
2949
2950 This = wxStyledTextCtrl()
2951 Flags = integer()
2952 Text = unicode:chardata()
2953
2954 See external documentation.
2955
2956 searchPrev(This, Flags, Text) -> integer()
2957
2958 Types:
2959
2960 This = wxStyledTextCtrl()
2961 Flags = integer()
2962 Text = unicode:chardata()
2963
2964 See external documentation.
2965
2966 linesOnScreen(This) -> integer()
2967
2968 Types:
2969
2970 This = wxStyledTextCtrl()
2971
2972 See external documentation.
2973
2974 usePopUp(This, AllowPopUp) -> ok
2975
2976 Types:
2977
2978 This = wxStyledTextCtrl()
2979 AllowPopUp = boolean()
2980
2981 See external documentation.
2982
2983 selectionIsRectangle(This) -> boolean()
2984
2985 Types:
2986
2987 This = wxStyledTextCtrl()
2988
2989 See external documentation.
2990
2991 setZoom(This, Zoom) -> ok
2992
2993 Types:
2994
2995 This = wxStyledTextCtrl()
2996 Zoom = integer()
2997
2998 See external documentation.
2999
3000 getZoom(This) -> integer()
3001
3002 Types:
3003
3004 This = wxStyledTextCtrl()
3005
3006 See external documentation.
3007
3008 getModEventMask(This) -> integer()
3009
3010 Types:
3011
3012 This = wxStyledTextCtrl()
3013
3014 See external documentation.
3015
3016 setSTCFocus(This, Focus) -> ok
3017
3018 Types:
3019
3020 This = wxStyledTextCtrl()
3021 Focus = boolean()
3022
3023 See external documentation.
3024
3025 getSTCFocus(This) -> boolean()
3026
3027 Types:
3028
3029 This = wxStyledTextCtrl()
3030
3031 See external documentation.
3032
3033 setStatus(This, StatusCode) -> ok
3034
3035 Types:
3036
3037 This = wxStyledTextCtrl()
3038 StatusCode = integer()
3039
3040 See external documentation.
3041
3042 getStatus(This) -> integer()
3043
3044 Types:
3045
3046 This = wxStyledTextCtrl()
3047
3048 See external documentation.
3049
3050 setMouseDownCaptures(This, Captures) -> ok
3051
3052 Types:
3053
3054 This = wxStyledTextCtrl()
3055 Captures = boolean()
3056
3057 See external documentation.
3058
3059 getMouseDownCaptures(This) -> boolean()
3060
3061 Types:
3062
3063 This = wxStyledTextCtrl()
3064
3065 See external documentation.
3066
3067 setSTCCursor(This, CursorType) -> ok
3068
3069 Types:
3070
3071 This = wxStyledTextCtrl()
3072 CursorType = integer()
3073
3074 See external documentation.
3075
3076 getSTCCursor(This) -> integer()
3077
3078 Types:
3079
3080 This = wxStyledTextCtrl()
3081
3082 See external documentation.
3083
3084 setControlCharSymbol(This, Symbol) -> ok
3085
3086 Types:
3087
3088 This = wxStyledTextCtrl()
3089 Symbol = integer()
3090
3091 See external documentation.
3092
3093 getControlCharSymbol(This) -> integer()
3094
3095 Types:
3096
3097 This = wxStyledTextCtrl()
3098
3099 See external documentation.
3100
3101 wordPartLeft(This) -> ok
3102
3103 Types:
3104
3105 This = wxStyledTextCtrl()
3106
3107 See external documentation.
3108
3109 wordPartLeftExtend(This) -> ok
3110
3111 Types:
3112
3113 This = wxStyledTextCtrl()
3114
3115 See external documentation.
3116
3117 wordPartRight(This) -> ok
3118
3119 Types:
3120
3121 This = wxStyledTextCtrl()
3122
3123 See external documentation.
3124
3125 wordPartRightExtend(This) -> ok
3126
3127 Types:
3128
3129 This = wxStyledTextCtrl()
3130
3131 See external documentation.
3132
3133 setVisiblePolicy(This, VisiblePolicy, VisibleSlop) -> ok
3134
3135 Types:
3136
3137 This = wxStyledTextCtrl()
3138 VisiblePolicy = integer()
3139 VisibleSlop = integer()
3140
3141 See external documentation.
3142
3143 delLineLeft(This) -> ok
3144
3145 Types:
3146
3147 This = wxStyledTextCtrl()
3148
3149 See external documentation.
3150
3151 delLineRight(This) -> ok
3152
3153 Types:
3154
3155 This = wxStyledTextCtrl()
3156
3157 See external documentation.
3158
3159 getXOffset(This) -> integer()
3160
3161 Types:
3162
3163 This = wxStyledTextCtrl()
3164
3165 See external documentation.
3166
3167 chooseCaretX(This) -> ok
3168
3169 Types:
3170
3171 This = wxStyledTextCtrl()
3172
3173 See external documentation.
3174
3175 setXCaretPolicy(This, CaretPolicy, CaretSlop) -> ok
3176
3177 Types:
3178
3179 This = wxStyledTextCtrl()
3180 CaretPolicy = integer()
3181 CaretSlop = integer()
3182
3183 See external documentation.
3184
3185 setYCaretPolicy(This, CaretPolicy, CaretSlop) -> ok
3186
3187 Types:
3188
3189 This = wxStyledTextCtrl()
3190 CaretPolicy = integer()
3191 CaretSlop = integer()
3192
3193 See external documentation.
3194
3195 getPrintWrapMode(This) -> integer()
3196
3197 Types:
3198
3199 This = wxStyledTextCtrl()
3200
3201 See external documentation.
3202
3203 setHotspotActiveForeground(This, UseSetting, Fore) -> ok
3204
3205 Types:
3206
3207 This = wxStyledTextCtrl()
3208 UseSetting = boolean()
3209 Fore = wx:wx_colour()
3210
3211 See external documentation.
3212
3213 setHotspotActiveBackground(This, UseSetting, Back) -> ok
3214
3215 Types:
3216
3217 This = wxStyledTextCtrl()
3218 UseSetting = boolean()
3219 Back = wx:wx_colour()
3220
3221 See external documentation.
3222
3223 setHotspotActiveUnderline(This, Underline) -> ok
3224
3225 Types:
3226
3227 This = wxStyledTextCtrl()
3228 Underline = boolean()
3229
3230 See external documentation.
3231
3232 setHotspotSingleLine(This, SingleLine) -> ok
3233
3234 Types:
3235
3236 This = wxStyledTextCtrl()
3237 SingleLine = boolean()
3238
3239 See external documentation.
3240
3241 paraDownExtend(This) -> ok
3242
3243 Types:
3244
3245 This = wxStyledTextCtrl()
3246
3247 See external documentation.
3248
3249 paraUp(This) -> ok
3250
3251 Types:
3252
3253 This = wxStyledTextCtrl()
3254
3255 See external documentation.
3256
3257 paraUpExtend(This) -> ok
3258
3259 Types:
3260
3261 This = wxStyledTextCtrl()
3262
3263 See external documentation.
3264
3265 positionBefore(This, Pos) -> integer()
3266
3267 Types:
3268
3269 This = wxStyledTextCtrl()
3270 Pos = integer()
3271
3272 See external documentation.
3273
3274 positionAfter(This, Pos) -> integer()
3275
3276 Types:
3277
3278 This = wxStyledTextCtrl()
3279 Pos = integer()
3280
3281 See external documentation.
3282
3283 copyRange(This, Start, End) -> ok
3284
3285 Types:
3286
3287 This = wxStyledTextCtrl()
3288 Start = integer()
3289 End = integer()
3290
3291 See external documentation.
3292
3293 copyText(This, Length, Text) -> ok
3294
3295 Types:
3296
3297 This = wxStyledTextCtrl()
3298 Length = integer()
3299 Text = unicode:chardata()
3300
3301 See external documentation.
3302
3303 setSelectionMode(This, Mode) -> ok
3304
3305 Types:
3306
3307 This = wxStyledTextCtrl()
3308 Mode = integer()
3309
3310 See external documentation.
3311
3312 getSelectionMode(This) -> integer()
3313
3314 Types:
3315
3316 This = wxStyledTextCtrl()
3317
3318 See external documentation.
3319
3320 lineDownRectExtend(This) -> ok
3321
3322 Types:
3323
3324 This = wxStyledTextCtrl()
3325
3326 See external documentation.
3327
3328 lineUpRectExtend(This) -> ok
3329
3330 Types:
3331
3332 This = wxStyledTextCtrl()
3333
3334 See external documentation.
3335
3336 charLeftRectExtend(This) -> ok
3337
3338 Types:
3339
3340 This = wxStyledTextCtrl()
3341
3342 See external documentation.
3343
3344 charRightRectExtend(This) -> ok
3345
3346 Types:
3347
3348 This = wxStyledTextCtrl()
3349
3350 See external documentation.
3351
3352 homeRectExtend(This) -> ok
3353
3354 Types:
3355
3356 This = wxStyledTextCtrl()
3357
3358 See external documentation.
3359
3360 vCHomeRectExtend(This) -> ok
3361
3362 Types:
3363
3364 This = wxStyledTextCtrl()
3365
3366 See external documentation.
3367
3368 lineEndRectExtend(This) -> ok
3369
3370 Types:
3371
3372 This = wxStyledTextCtrl()
3373
3374 See external documentation.
3375
3376 pageUpRectExtend(This) -> ok
3377
3378 Types:
3379
3380 This = wxStyledTextCtrl()
3381
3382 See external documentation.
3383
3384 pageDownRectExtend(This) -> ok
3385
3386 Types:
3387
3388 This = wxStyledTextCtrl()
3389
3390 See external documentation.
3391
3392 stutteredPageUp(This) -> ok
3393
3394 Types:
3395
3396 This = wxStyledTextCtrl()
3397
3398 See external documentation.
3399
3400 stutteredPageUpExtend(This) -> ok
3401
3402 Types:
3403
3404 This = wxStyledTextCtrl()
3405
3406 See external documentation.
3407
3408 stutteredPageDown(This) -> ok
3409
3410 Types:
3411
3412 This = wxStyledTextCtrl()
3413
3414 See external documentation.
3415
3416 stutteredPageDownExtend(This) -> ok
3417
3418 Types:
3419
3420 This = wxStyledTextCtrl()
3421
3422 See external documentation.
3423
3424 wordLeftEnd(This) -> ok
3425
3426 Types:
3427
3428 This = wxStyledTextCtrl()
3429
3430 See external documentation.
3431
3432 wordLeftEndExtend(This) -> ok
3433
3434 Types:
3435
3436 This = wxStyledTextCtrl()
3437
3438 See external documentation.
3439
3440 wordRightEnd(This) -> ok
3441
3442 Types:
3443
3444 This = wxStyledTextCtrl()
3445
3446 See external documentation.
3447
3448 wordRightEndExtend(This) -> ok
3449
3450 Types:
3451
3452 This = wxStyledTextCtrl()
3453
3454 See external documentation.
3455
3456 setWhitespaceChars(This, Characters) -> ok
3457
3458 Types:
3459
3460 This = wxStyledTextCtrl()
3461 Characters = unicode:chardata()
3462
3463 See external documentation.
3464
3465 setCharsDefault(This) -> ok
3466
3467 Types:
3468
3469 This = wxStyledTextCtrl()
3470
3471 See external documentation.
3472
3473 autoCompGetCurrent(This) -> integer()
3474
3475 Types:
3476
3477 This = wxStyledTextCtrl()
3478
3479 See external documentation.
3480
3481 allocate(This, Bytes) -> ok
3482
3483 Types:
3484
3485 This = wxStyledTextCtrl()
3486 Bytes = integer()
3487
3488 See external documentation.
3489
3490 findColumn(This, Line, Column) -> integer()
3491
3492 Types:
3493
3494 This = wxStyledTextCtrl()
3495 Line = integer()
3496 Column = integer()
3497
3498 See external documentation.
3499
3500 getCaretSticky(This) -> boolean()
3501
3502 Types:
3503
3504 This = wxStyledTextCtrl()
3505
3506 See external documentation.
3507
3508 setCaretSticky(This, UseCaretStickyBehaviour) -> ok
3509
3510 Types:
3511
3512 This = wxStyledTextCtrl()
3513 UseCaretStickyBehaviour = boolean()
3514
3515 See external documentation.
3516
3517 toggleCaretSticky(This) -> ok
3518
3519 Types:
3520
3521 This = wxStyledTextCtrl()
3522
3523 See external documentation.
3524
3525 setPasteConvertEndings(This, Convert) -> ok
3526
3527 Types:
3528
3529 This = wxStyledTextCtrl()
3530 Convert = boolean()
3531
3532 See external documentation.
3533
3534 getPasteConvertEndings(This) -> boolean()
3535
3536 Types:
3537
3538 This = wxStyledTextCtrl()
3539
3540 See external documentation.
3541
3542 selectionDuplicate(This) -> ok
3543
3544 Types:
3545
3546 This = wxStyledTextCtrl()
3547
3548 See external documentation.
3549
3550 setCaretLineBackAlpha(This, Alpha) -> ok
3551
3552 Types:
3553
3554 This = wxStyledTextCtrl()
3555 Alpha = integer()
3556
3557 See external documentation.
3558
3559 getCaretLineBackAlpha(This) -> integer()
3560
3561 Types:
3562
3563 This = wxStyledTextCtrl()
3564
3565 See external documentation.
3566
3567 startRecord(This) -> ok
3568
3569 Types:
3570
3571 This = wxStyledTextCtrl()
3572
3573 See external documentation.
3574
3575 stopRecord(This) -> ok
3576
3577 Types:
3578
3579 This = wxStyledTextCtrl()
3580
3581 See external documentation.
3582
3583 setLexer(This, Lexer) -> ok
3584
3585 Types:
3586
3587 This = wxStyledTextCtrl()
3588 Lexer = integer()
3589
3590 See external documentation.
3591
3592 getLexer(This) -> integer()
3593
3594 Types:
3595
3596 This = wxStyledTextCtrl()
3597
3598 See external documentation.
3599
3600 colourise(This, Start, End) -> ok
3601
3602 Types:
3603
3604 This = wxStyledTextCtrl()
3605 Start = integer()
3606 End = integer()
3607
3608 See external documentation.
3609
3610 setProperty(This, Key, Value) -> ok
3611
3612 Types:
3613
3614 This = wxStyledTextCtrl()
3615 Key = unicode:chardata()
3616 Value = unicode:chardata()
3617
3618 See external documentation.
3619
3620 setKeyWords(This, KeywordSet, KeyWords) -> ok
3621
3622 Types:
3623
3624 This = wxStyledTextCtrl()
3625 KeywordSet = integer()
3626 KeyWords = unicode:chardata()
3627
3628 See external documentation.
3629
3630 setLexerLanguage(This, Language) -> ok
3631
3632 Types:
3633
3634 This = wxStyledTextCtrl()
3635 Language = unicode:chardata()
3636
3637 See external documentation.
3638
3639 getProperty(This, Key) -> unicode:charlist()
3640
3641 Types:
3642
3643 This = wxStyledTextCtrl()
3644 Key = unicode:chardata()
3645
3646 See external documentation.
3647
3648 getStyleBitsNeeded(This) -> integer()
3649
3650 Types:
3651
3652 This = wxStyledTextCtrl()
3653
3654 See external documentation.
3655
3656 getCurrentLine(This) -> integer()
3657
3658 Types:
3659
3660 This = wxStyledTextCtrl()
3661
3662 See external documentation.
3663
3664 styleSetSpec(This, StyleNum, Spec) -> ok
3665
3666 Types:
3667
3668 This = wxStyledTextCtrl()
3669 StyleNum = integer()
3670 Spec = unicode:chardata()
3671
3672 See external documentation.
3673
3674 styleSetFont(This, StyleNum, Font) -> ok
3675
3676 Types:
3677
3678 This = wxStyledTextCtrl()
3679 StyleNum = integer()
3680 Font = wxFont:wxFont()
3681
3682 See external documentation.
3683
3684 styleSetFontAttr(This, StyleNum, Size, FaceName, Bold, Italic, Under‐
3685 line) -> ok
3686
3687 Types:
3688
3689 This = wxStyledTextCtrl()
3690 StyleNum = integer()
3691 Size = integer()
3692 FaceName = unicode:chardata()
3693 Bold = boolean()
3694 Italic = boolean()
3695 Underline = boolean()
3696
3697 Equivalent to styleSetFontAttr(This, StyleNum, Size, FaceName,
3698 Bold, Italic, Underline, []).
3699
3700 styleSetFontAttr(This, StyleNum, Size, FaceName, Bold, Italic, Under‐
3701 line, Options::[Option]) -> ok
3702
3703 Types:
3704
3705 This = wxStyledTextCtrl()
3706 StyleNum = integer()
3707 Size = integer()
3708 FaceName = unicode:chardata()
3709 Bold = boolean()
3710 Italic = boolean()
3711 Underline = boolean()
3712 Option = {encoding, wx:wx_enum()}
3713
3714 See external documentation.
3715 Encoding = ?wxFONTENCODING_SYSTEM | ?wxFONTENCODING_DEFAULT |
3716 ?wxFONTENCODING_ISO8859_1 | ?wxFONTENCODING_ISO8859_2 |
3717 ?wxFONTENCODING_ISO8859_3 | ?wxFONTENCODING_ISO8859_4 |
3718 ?wxFONTENCODING_ISO8859_5 | ?wxFONTENCODING_ISO8859_6 |
3719 ?wxFONTENCODING_ISO8859_7 | ?wxFONTENCODING_ISO8859_8 |
3720 ?wxFONTENCODING_ISO8859_9 | ?wxFONTENCODING_ISO8859_10 |
3721 ?wxFONTENCODING_ISO8859_11 | ?wxFONTENCODING_ISO8859_12 |
3722 ?wxFONTENCODING_ISO8859_13 | ?wxFONTENCODING_ISO8859_14 |
3723 ?wxFONTENCODING_ISO8859_15 | ?wxFONTENCODING_ISO8859_MAX |
3724 ?wxFONTENCODING_KOI8 | ?wxFONTENCODING_KOI8_U | ?wxFONTENCOD‐
3725 ING_ALTERNATIVE | ?wxFONTENCODING_BULGARIAN | ?wxFONTENCOD‐
3726 ING_CP437 | ?wxFONTENCODING_CP850 | ?wxFONTENCODING_CP852 |
3727 ?wxFONTENCODING_CP855 | ?wxFONTENCODING_CP866 | ?wxFONTENCOD‐
3728 ING_CP874 | ?wxFONTENCODING_CP932 | ?wxFONTENCODING_CP936 |
3729 ?wxFONTENCODING_CP949 | ?wxFONTENCODING_CP950 | ?wxFONTENCOD‐
3730 ING_CP1250 | ?wxFONTENCODING_CP1251 | ?wxFONTENCODING_CP1252 |
3731 ?wxFONTENCODING_CP1253 | ?wxFONTENCODING_CP1254 | ?wxFONTENCOD‐
3732 ING_CP1255 | ?wxFONTENCODING_CP1256 | ?wxFONTENCODING_CP1257 |
3733 ?wxFONTENCODING_CP12_MAX | ?wxFONTENCODING_UTF7 | ?wxFONTENCOD‐
3734 ING_UTF8 | ?wxFONTENCODING_EUC_JP | ?wxFONTENCODING_UTF16BE |
3735 ?wxFONTENCODING_UTF16LE | ?wxFONTENCODING_UTF32BE |
3736 ?wxFONTENCODING_UTF32LE | ?wxFONTENCODING_MACROMAN |
3737 ?wxFONTENCODING_MACJAPANESE | ?wxFONTENCODING_MACCHINESETRAD |
3738 ?wxFONTENCODING_MACKOREAN | ?wxFONTENCODING_MACARABIC |
3739 ?wxFONTENCODING_MACHEBREW | ?wxFONTENCODING_MACGREEK |
3740 ?wxFONTENCODING_MACCYRILLIC | ?wxFONTENCODING_MACDEVANAGARI |
3741 ?wxFONTENCODING_MACGURMUKHI | ?wxFONTENCODING_MACGUJARATI |
3742 ?wxFONTENCODING_MACORIYA | ?wxFONTENCODING_MACBENGALI |
3743 ?wxFONTENCODING_MACTAMIL | ?wxFONTENCODING_MACTELUGU |
3744 ?wxFONTENCODING_MACKANNADA | ?wxFONTENCODING_MACMALAJALAM |
3745 ?wxFONTENCODING_MACSINHALESE | ?wxFONTENCODING_MACBURMESE |
3746 ?wxFONTENCODING_MACKHMER | ?wxFONTENCODING_MACTHAI |
3747 ?wxFONTENCODING_MACLAOTIAN | ?wxFONTENCODING_MACGEORGIAN |
3748 ?wxFONTENCODING_MACARMENIAN | ?wxFONTENCODING_MACCHINESESIMP |
3749 ?wxFONTENCODING_MACTIBETAN | ?wxFONTENCODING_MACMONGOLIAN |
3750 ?wxFONTENCODING_MACETHIOPIC | ?wxFONTENCODING_MACCENTRALEUR |
3751 ?wxFONTENCODING_MACVIATNAMESE | ?wxFONTENCODING_MACARABICEXT |
3752 ?wxFONTENCODING_MACSYMBOL | ?wxFONTENCODING_MACDINGBATS |
3753 ?wxFONTENCODING_MACTURKISH | ?wxFONTENCODING_MACCROATIAN |
3754 ?wxFONTENCODING_MACICELANDIC | ?wxFONTENCODING_MACROMANIAN |
3755 ?wxFONTENCODING_MACCELTIC | ?wxFONTENCODING_MACGAELIC |
3756 ?wxFONTENCODING_MACKEYBOARD | ?wxFONTENCODING_MAX |
3757 ?wxFONTENCODING_MACMIN | ?wxFONTENCODING_MACMAX | ?wxFONTENCOD‐
3758 ING_UTF16 | ?wxFONTENCODING_UTF32 | ?wxFONTENCODING_UNICODE |
3759 ?wxFONTENCODING_GB2312 | ?wxFONTENCODING_BIG5 | ?wxFONTENCOD‐
3760 ING_SHIFT_JIS
3761
3762 styleSetCharacterSet(This, Style, CharacterSet) -> ok
3763
3764 Types:
3765
3766 This = wxStyledTextCtrl()
3767 Style = integer()
3768 CharacterSet = integer()
3769
3770 See external documentation.
3771
3772 styleSetFontEncoding(This, Style, Encoding) -> ok
3773
3774 Types:
3775
3776 This = wxStyledTextCtrl()
3777 Style = integer()
3778 Encoding = wx:wx_enum()
3779
3780 See external documentation.
3781 Encoding = ?wxFONTENCODING_SYSTEM | ?wxFONTENCODING_DEFAULT |
3782 ?wxFONTENCODING_ISO8859_1 | ?wxFONTENCODING_ISO8859_2 |
3783 ?wxFONTENCODING_ISO8859_3 | ?wxFONTENCODING_ISO8859_4 |
3784 ?wxFONTENCODING_ISO8859_5 | ?wxFONTENCODING_ISO8859_6 |
3785 ?wxFONTENCODING_ISO8859_7 | ?wxFONTENCODING_ISO8859_8 |
3786 ?wxFONTENCODING_ISO8859_9 | ?wxFONTENCODING_ISO8859_10 |
3787 ?wxFONTENCODING_ISO8859_11 | ?wxFONTENCODING_ISO8859_12 |
3788 ?wxFONTENCODING_ISO8859_13 | ?wxFONTENCODING_ISO8859_14 |
3789 ?wxFONTENCODING_ISO8859_15 | ?wxFONTENCODING_ISO8859_MAX |
3790 ?wxFONTENCODING_KOI8 | ?wxFONTENCODING_KOI8_U | ?wxFONTENCOD‐
3791 ING_ALTERNATIVE | ?wxFONTENCODING_BULGARIAN | ?wxFONTENCOD‐
3792 ING_CP437 | ?wxFONTENCODING_CP850 | ?wxFONTENCODING_CP852 |
3793 ?wxFONTENCODING_CP855 | ?wxFONTENCODING_CP866 | ?wxFONTENCOD‐
3794 ING_CP874 | ?wxFONTENCODING_CP932 | ?wxFONTENCODING_CP936 |
3795 ?wxFONTENCODING_CP949 | ?wxFONTENCODING_CP950 | ?wxFONTENCOD‐
3796 ING_CP1250 | ?wxFONTENCODING_CP1251 | ?wxFONTENCODING_CP1252 |
3797 ?wxFONTENCODING_CP1253 | ?wxFONTENCODING_CP1254 | ?wxFONTENCOD‐
3798 ING_CP1255 | ?wxFONTENCODING_CP1256 | ?wxFONTENCODING_CP1257 |
3799 ?wxFONTENCODING_CP12_MAX | ?wxFONTENCODING_UTF7 | ?wxFONTENCOD‐
3800 ING_UTF8 | ?wxFONTENCODING_EUC_JP | ?wxFONTENCODING_UTF16BE |
3801 ?wxFONTENCODING_UTF16LE | ?wxFONTENCODING_UTF32BE |
3802 ?wxFONTENCODING_UTF32LE | ?wxFONTENCODING_MACROMAN |
3803 ?wxFONTENCODING_MACJAPANESE | ?wxFONTENCODING_MACCHINESETRAD |
3804 ?wxFONTENCODING_MACKOREAN | ?wxFONTENCODING_MACARABIC |
3805 ?wxFONTENCODING_MACHEBREW | ?wxFONTENCODING_MACGREEK |
3806 ?wxFONTENCODING_MACCYRILLIC | ?wxFONTENCODING_MACDEVANAGARI |
3807 ?wxFONTENCODING_MACGURMUKHI | ?wxFONTENCODING_MACGUJARATI |
3808 ?wxFONTENCODING_MACORIYA | ?wxFONTENCODING_MACBENGALI |
3809 ?wxFONTENCODING_MACTAMIL | ?wxFONTENCODING_MACTELUGU |
3810 ?wxFONTENCODING_MACKANNADA | ?wxFONTENCODING_MACMALAJALAM |
3811 ?wxFONTENCODING_MACSINHALESE | ?wxFONTENCODING_MACBURMESE |
3812 ?wxFONTENCODING_MACKHMER | ?wxFONTENCODING_MACTHAI |
3813 ?wxFONTENCODING_MACLAOTIAN | ?wxFONTENCODING_MACGEORGIAN |
3814 ?wxFONTENCODING_MACARMENIAN | ?wxFONTENCODING_MACCHINESESIMP |
3815 ?wxFONTENCODING_MACTIBETAN | ?wxFONTENCODING_MACMONGOLIAN |
3816 ?wxFONTENCODING_MACETHIOPIC | ?wxFONTENCODING_MACCENTRALEUR |
3817 ?wxFONTENCODING_MACVIATNAMESE | ?wxFONTENCODING_MACARABICEXT |
3818 ?wxFONTENCODING_MACSYMBOL | ?wxFONTENCODING_MACDINGBATS |
3819 ?wxFONTENCODING_MACTURKISH | ?wxFONTENCODING_MACCROATIAN |
3820 ?wxFONTENCODING_MACICELANDIC | ?wxFONTENCODING_MACROMANIAN |
3821 ?wxFONTENCODING_MACCELTIC | ?wxFONTENCODING_MACGAELIC |
3822 ?wxFONTENCODING_MACKEYBOARD | ?wxFONTENCODING_MAX |
3823 ?wxFONTENCODING_MACMIN | ?wxFONTENCODING_MACMAX | ?wxFONTENCOD‐
3824 ING_UTF16 | ?wxFONTENCODING_UTF32 | ?wxFONTENCODING_UNICODE |
3825 ?wxFONTENCODING_GB2312 | ?wxFONTENCODING_BIG5 | ?wxFONTENCOD‐
3826 ING_SHIFT_JIS
3827
3828 cmdKeyExecute(This, Cmd) -> ok
3829
3830 Types:
3831
3832 This = wxStyledTextCtrl()
3833 Cmd = integer()
3834
3835 See external documentation.
3836
3837 setMargins(This, Left, Right) -> ok
3838
3839 Types:
3840
3841 This = wxStyledTextCtrl()
3842 Left = integer()
3843 Right = integer()
3844
3845 See external documentation.
3846
3847 getSelection(This) -> {StartPos::integer(), EndPos::integer()}
3848
3849 Types:
3850
3851 This = wxStyledTextCtrl()
3852
3853 See external documentation.
3854
3855 pointFromPosition(This, Pos) -> {X::integer(), Y::integer()}
3856
3857 Types:
3858
3859 This = wxStyledTextCtrl()
3860 Pos = integer()
3861
3862 See external documentation.
3863
3864 scrollToLine(This, Line) -> ok
3865
3866 Types:
3867
3868 This = wxStyledTextCtrl()
3869 Line = integer()
3870
3871 See external documentation.
3872
3873 scrollToColumn(This, Column) -> ok
3874
3875 Types:
3876
3877 This = wxStyledTextCtrl()
3878 Column = integer()
3879
3880 See external documentation.
3881
3882 setVScrollBar(This, Bar) -> ok
3883
3884 Types:
3885
3886 This = wxStyledTextCtrl()
3887 Bar = wxScrollBar:wxScrollBar()
3888
3889 See external documentation.
3890
3891 setHScrollBar(This, Bar) -> ok
3892
3893 Types:
3894
3895 This = wxStyledTextCtrl()
3896 Bar = wxScrollBar:wxScrollBar()
3897
3898 See external documentation.
3899
3900 getLastKeydownProcessed(This) -> boolean()
3901
3902 Types:
3903
3904 This = wxStyledTextCtrl()
3905
3906 See external documentation.
3907
3908 setLastKeydownProcessed(This, Val) -> ok
3909
3910 Types:
3911
3912 This = wxStyledTextCtrl()
3913 Val = boolean()
3914
3915 See external documentation.
3916
3917 saveFile(This, Filename) -> boolean()
3918
3919 Types:
3920
3921 This = wxStyledTextCtrl()
3922 Filename = unicode:chardata()
3923
3924 See external documentation.
3925
3926 loadFile(This, Filename) -> boolean()
3927
3928 Types:
3929
3930 This = wxStyledTextCtrl()
3931 Filename = unicode:chardata()
3932
3933 See external documentation.
3934
3935 doDragOver(This, X, Y, Def) -> wx:wx_enum()
3936
3937 Types:
3938
3939 This = wxStyledTextCtrl()
3940 X = integer()
3941 Y = integer()
3942 Def = wx:wx_enum()
3943
3944 See external documentation.
3945 Def = ?wxDragError | ?wxDragNone | ?wxDragCopy | ?wxDragMove |
3946 ?wxDragLink | ?wxDragCancel
3947 Res = ?wxDragError | ?wxDragNone | ?wxDragCopy | ?wxDragMove |
3948 ?wxDragLink | ?wxDragCancel
3949
3950 doDropText(This, X, Y, Data) -> boolean()
3951
3952 Types:
3953
3954 This = wxStyledTextCtrl()
3955 X = integer()
3956 Y = integer()
3957 Data = unicode:chardata()
3958
3959 See external documentation.
3960
3961 getUseAntiAliasing(This) -> boolean()
3962
3963 Types:
3964
3965 This = wxStyledTextCtrl()
3966
3967 See external documentation.
3968
3969 addTextRaw(This, Text) -> ok
3970
3971 Types:
3972
3973 This = wxStyledTextCtrl()
3974 Text = binary()
3975
3976 See external documentation.
3977
3978 insertTextRaw(This, Pos, Text) -> ok
3979
3980 Types:
3981
3982 This = wxStyledTextCtrl()
3983 Pos = integer()
3984 Text = binary()
3985
3986 See external documentation.
3987
3988 getCurLineRaw(This) -> Result
3989
3990 Types:
3991
3992 Result = {Res::binary(), LinePos::integer()}
3993 This = wxStyledTextCtrl()
3994
3995 See external documentation.
3996
3997 getLineRaw(This, Line) -> binary()
3998
3999 Types:
4000
4001 This = wxStyledTextCtrl()
4002 Line = integer()
4003
4004 See external documentation.
4005
4006 getSelectedTextRaw(This) -> binary()
4007
4008 Types:
4009
4010 This = wxStyledTextCtrl()
4011
4012 See external documentation.
4013
4014 getTextRangeRaw(This, StartPos, EndPos) -> binary()
4015
4016 Types:
4017
4018 This = wxStyledTextCtrl()
4019 StartPos = integer()
4020 EndPos = integer()
4021
4022 See external documentation.
4023
4024 setTextRaw(This, Text) -> ok
4025
4026 Types:
4027
4028 This = wxStyledTextCtrl()
4029 Text = binary()
4030
4031 See external documentation.
4032
4033 getTextRaw(This) -> binary()
4034
4035 Types:
4036
4037 This = wxStyledTextCtrl()
4038
4039 See external documentation.
4040
4041 appendTextRaw(This, Text) -> ok
4042
4043 Types:
4044
4045 This = wxStyledTextCtrl()
4046 Text = binary()
4047
4048 See external documentation.
4049
4050 destroy(This::wxStyledTextCtrl()) -> ok
4051
4052 Destroys this object, do not use object again
4053
4055 <>
4056
4057
4058
4059 wx 1.9 wxStyledTextCtrl(3)