File: wx.TextAttr.txt

package info (click to toggle)
wxpython4.0 4.0.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 211,112 kB
  • sloc: cpp: 888,355; python: 223,130; makefile: 52,087; ansic: 45,780; sh: 3,012; xml: 1,534; perl: 264
file content (1982 lines) | stat: -rw-r--r-- 50,092 bytes parent folder | download
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
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2018 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc



.. _wx.TextAttr:

==========================================================================================================================================
|phoenix_title|  **wx.TextAttr**
==========================================================================================================================================

:ref:`wx.TextAttr`  represents the character and paragraph attributes, or style, for a range of text in a :ref:`wx.TextCtrl`  or :ref:`wx.richtext.RichTextCtrl`.          

When setting up a :ref:`wx.TextAttr`  object, pass a bitlist mask to :meth:`wx.TextAttr.SetFlags`   to indicate which style elements should be changed. As a convenience, when you call a setter such as SetFont, the relevant bit will be set. 







         



.. seealso:: :ref:`wx.TextCtrl`, :ref:`wx.richtext.RichTextCtrl`    







|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
   <img id="toggleBlock-trigger" src="_static/images/closed.png"/>
   Inheritance diagram for class <strong>TextAttr</strong>:
   </div>
   <div id="toggleBlock-summary" style="display:block;"></div>
   <div id="toggleBlock-content" style="display:none;">
   <p class="graphviz">
   <center><img src="_static/images/inheritance/wx.TextAttr_inheritance.png" alt="Inheritance diagram of TextAttr" usemap="#dummy" class="inheritance"/></center>
   </div>
   <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
   <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.TextAttr.html" title="wx.TextAttr" alt="" coords="5,5,96,35"/> </map> 
   </p>

|


|sub_classes| Known Subclasses
==============================

:ref:`wx.richtext.RichTextAttr`

|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.TextAttr.__init__`                                                    Constructors.
:meth:`~wx.TextAttr.Apply`                                                       Applies the attributes in `style`  to the original object, but not those attributes from `style`  that are the same as those in `compareWith`  (if passed).
:meth:`~wx.TextAttr.EqPartial`                                                   Partial equality test.
:meth:`~wx.TextAttr.GetAlignment`                                                Returns the alignment flags.
:meth:`~wx.TextAttr.GetBackgroundColour`                                         Returns the background colour.
:meth:`~wx.TextAttr.GetBulletFont`                                               Returns a string containing the name of the font associated with the bullet symbol.
:meth:`~wx.TextAttr.GetBulletName`                                               Returns the standard bullet name, applicable if the bullet style is ``wx.TEXT_ATTR_BULLET_STYLE_STANDARD``.
:meth:`~wx.TextAttr.GetBulletNumber`                                             Returns the bullet number.
:meth:`~wx.TextAttr.GetBulletStyle`                                              Returns the bullet style.
:meth:`~wx.TextAttr.GetBulletText`                                               Returns the bullet text, which could be a symbol, or (for example) cached outline text.
:meth:`~wx.TextAttr.GetCharacterStyleName`                                       Returns the name of the character style.
:meth:`~wx.TextAttr.GetFlags`                                                    Returns flags indicating which attributes are applicable.
:meth:`~wx.TextAttr.GetFont`                                                     Creates and returns a font specified by the font attributes in the :ref:`wx.TextAttr`  object.
:meth:`~wx.TextAttr.GetFontAttributes`                                           Gets the font attributes from the given font, using only the attributes specified by `flags`.
:meth:`~wx.TextAttr.GetFontEncoding`                                             Returns the font encoding.
:meth:`~wx.TextAttr.GetFontFaceName`                                             Returns the font face name.
:meth:`~wx.TextAttr.GetFontFamily`                                               Returns the font family.
:meth:`~wx.TextAttr.GetFontSize`                                                 Returns the font size in points.
:meth:`~wx.TextAttr.GetFontStyle`                                                Returns the font style.
:meth:`~wx.TextAttr.GetFontUnderlined`                                           Returns ``True`` if the font is underlined.
:meth:`~wx.TextAttr.GetFontWeight`                                               Returns the font weight.
:meth:`~wx.TextAttr.GetLeftIndent`                                               Returns the left indent in tenths of a millimetre.
:meth:`~wx.TextAttr.GetLeftSubIndent`                                            Returns the left sub-indent in tenths of a millimetre.
:meth:`~wx.TextAttr.GetLineSpacing`                                              Returns the line spacing value, one of :ref:`wx.TextAttrLineSpacing`  values.
:meth:`~wx.TextAttr.GetListStyleName`                                            Returns the name of the list style.
:meth:`~wx.TextAttr.GetOutlineLevel`                                             Returns the outline level.
:meth:`~wx.TextAttr.GetParagraphSpacingAfter`                                    Returns the space in tenths of a millimeter after the paragraph.
:meth:`~wx.TextAttr.GetParagraphSpacingBefore`                                   Returns the space in tenths of a millimeter before the paragraph.
:meth:`~wx.TextAttr.GetParagraphStyleName`                                       Returns the name of the paragraph style.
:meth:`~wx.TextAttr.GetRightIndent`                                              Returns the right indent in tenths of a millimeter.
:meth:`~wx.TextAttr.GetTabs`                                                     Returns an array of tab stops, each expressed in tenths of a millimeter.
:meth:`~wx.TextAttr.GetTextColour`                                               Returns the text foreground colour.
:meth:`~wx.TextAttr.GetTextEffectFlags`                                          Returns the text effect bits of interest.
:meth:`~wx.TextAttr.GetTextEffects`                                              Returns the text effects, a bit list of styles.
:meth:`~wx.TextAttr.GetURL`                                                      Returns the URL for the content.
:meth:`~wx.TextAttr.HasAlignment`                                                Returns ``True`` if the attribute object specifies alignment.
:meth:`~wx.TextAttr.HasBackgroundColour`                                         Returns ``True`` if the attribute object specifies a background colour.
:meth:`~wx.TextAttr.HasBulletName`                                               Returns ``True`` if the attribute object specifies a standard bullet name.
:meth:`~wx.TextAttr.HasBulletNumber`                                             Returns ``True`` if the attribute object specifies a bullet number.
:meth:`~wx.TextAttr.HasBulletStyle`                                              Returns ``True`` if the attribute object specifies a bullet style.
:meth:`~wx.TextAttr.HasBulletText`                                               Returns ``True`` if the attribute object specifies bullet text (usually specifying a symbol).
:meth:`~wx.TextAttr.HasCharacterStyleName`                                       Returns ``True`` if the attribute object specifies a character style name.
:meth:`~wx.TextAttr.HasFlag`                                                     Returns ``True`` if the `flag`  is present in the attribute object's flag bitlist.
:meth:`~wx.TextAttr.HasFont`                                                     Returns ``True`` if the attribute object specifies any font attributes.
:meth:`~wx.TextAttr.HasFontEncoding`                                             Returns ``True`` if the attribute object specifies an encoding.
:meth:`~wx.TextAttr.HasFontFaceName`                                             Returns ``True`` if the attribute object specifies a font face name.
:meth:`~wx.TextAttr.HasFontFamily`                                               Returns ``True`` if the attribute object specifies a font family.
:meth:`~wx.TextAttr.HasFontItalic`                                               Returns ``True`` if the attribute object specifies italic style.
:meth:`~wx.TextAttr.HasFontPixelSize`                                            Returns ``True`` if the attribute object specifies a font pixel size.
:meth:`~wx.TextAttr.HasFontPointSize`                                            Returns ``True`` if the attribute object specifies a font point size.
:meth:`~wx.TextAttr.HasFontSize`                                                 Returns ``True`` if the attribute object specifies a font point or pixel size.
:meth:`~wx.TextAttr.HasFontUnderlined`                                           Returns ``True`` if the attribute object specifies either underlining or no underlining.
:meth:`~wx.TextAttr.HasFontWeight`                                               Returns ``True`` if the attribute object specifies font weight (bold, light or normal).
:meth:`~wx.TextAttr.HasLeftIndent`                                               Returns ``True`` if the attribute object specifies a left indent.
:meth:`~wx.TextAttr.HasLineSpacing`                                              Returns ``True`` if the attribute object specifies line spacing.
:meth:`~wx.TextAttr.HasListStyleName`                                            Returns ``True`` if the attribute object specifies a list style name.
:meth:`~wx.TextAttr.HasOutlineLevel`                                             Returns ``True`` if the attribute object specifies an outline level.
:meth:`~wx.TextAttr.HasPageBreak`                                                Returns ``True`` if the attribute object specifies a page break before this paragraph.
:meth:`~wx.TextAttr.HasParagraphSpacingAfter`                                    Returns ``True`` if the attribute object specifies spacing after a paragraph.
:meth:`~wx.TextAttr.HasParagraphSpacingBefore`                                   Returns ``True`` if the attribute object specifies spacing before a paragraph.
:meth:`~wx.TextAttr.HasParagraphStyleName`                                       Returns ``True`` if the attribute object specifies a paragraph style name.
:meth:`~wx.TextAttr.HasRightIndent`                                              Returns ``True`` if the attribute object specifies a right indent.
:meth:`~wx.TextAttr.HasTabs`                                                     Returns ``True`` if the attribute object specifies tab stops.
:meth:`~wx.TextAttr.HasTextColour`                                               Returns ``True`` if the attribute object specifies a text foreground colour.
:meth:`~wx.TextAttr.HasTextEffects`                                              Returns ``True`` if the attribute object specifies text effects.
:meth:`~wx.TextAttr.HasURL`                                                      Returns ``True`` if the attribute object specifies a URL.
:meth:`~wx.TextAttr.IsCharacterStyle`                                            Returns ``True`` if the object represents a character style, that is, the flags specify a font or a text background or foreground colour.
:meth:`~wx.TextAttr.IsDefault`                                                   Returns ``False`` if we have any attributes set, ``True`` otherwise.
:meth:`~wx.TextAttr.IsParagraphStyle`                                            Returns ``True`` if the object represents a paragraph style, that is, the flags specify alignment, indentation, tabs, paragraph spacing, or bullet style.
:meth:`~wx.TextAttr.Merge`                                                       Copies all defined/valid properties from overlay to current object.
:meth:`~wx.TextAttr.SetAlignment`                                                Sets the paragraph alignment.
:meth:`~wx.TextAttr.SetBackgroundColour`                                         Sets the background colour.
:meth:`~wx.TextAttr.SetBulletFont`                                               Sets the name of the font associated with the bullet symbol.
:meth:`~wx.TextAttr.SetBulletName`                                               Sets the standard bullet name, applicable if the bullet style is ``wx.TEXT_ATTR_BULLET_STYLE_STANDARD``.
:meth:`~wx.TextAttr.SetBulletNumber`                                             Sets the bullet number.
:meth:`~wx.TextAttr.SetBulletStyle`                                              Sets the bullet style.
:meth:`~wx.TextAttr.SetBulletText`                                               Sets the bullet text, which could be a symbol, or (for example) cached outline text.
:meth:`~wx.TextAttr.SetCharacterStyleName`                                       Sets the character style name.
:meth:`~wx.TextAttr.SetFlags`                                                    Sets the flags determining which styles are being specified.
:meth:`~wx.TextAttr.SetFont`                                                     Sets the attributes for the given font.
:meth:`~wx.TextAttr.SetFontEncoding`                                             Sets the font encoding.
:meth:`~wx.TextAttr.SetFontFaceName`                                             Sets the font face name.
:meth:`~wx.TextAttr.SetFontFamily`                                               Sets the font family.
:meth:`~wx.TextAttr.SetFontPixelSize`                                            Sets the font size in pixels.
:meth:`~wx.TextAttr.SetFontPointSize`                                            Sets the font size in points.
:meth:`~wx.TextAttr.SetFontSize`                                                 Sets the font size in points.
:meth:`~wx.TextAttr.SetFontStyle`                                                Sets the font style (normal, italic or slanted).
:meth:`~wx.TextAttr.SetFontUnderlined`                                           Sets the font underlining.
:meth:`~wx.TextAttr.SetFontWeight`                                               Sets the font weight.
:meth:`~wx.TextAttr.SetLeftIndent`                                               Sets the left indent and left subindent in tenths of a millimetre.
:meth:`~wx.TextAttr.SetLineSpacing`                                              Sets the line spacing.
:meth:`~wx.TextAttr.SetListStyleName`                                            Sets the list style name.
:meth:`~wx.TextAttr.SetOutlineLevel`                                             Specifies the outline level.
:meth:`~wx.TextAttr.SetPageBreak`                                                Specifies a page break before this paragraph.
:meth:`~wx.TextAttr.SetParagraphSpacingAfter`                                    Sets the spacing after a paragraph, in tenths of a millimetre.
:meth:`~wx.TextAttr.SetParagraphSpacingBefore`                                   Sets the spacing before a paragraph, in tenths of a millimetre.
:meth:`~wx.TextAttr.SetParagraphStyleName`                                       Sets the name of the paragraph style.
:meth:`~wx.TextAttr.SetRightIndent`                                              Sets the right indent in tenths of a millimetre.
:meth:`~wx.TextAttr.SetTabs`                                                     Sets the tab stops, expressed in tenths of a millimetre.
:meth:`~wx.TextAttr.SetTextColour`                                               Sets the text foreground colour.
:meth:`~wx.TextAttr.SetTextEffectFlags`                                          Sets the text effect bits of interest.
:meth:`~wx.TextAttr.SetTextEffects`                                              Sets the text effects, a bit list of styles.
:meth:`~wx.TextAttr.SetURL`                                                      Sets the URL for the content.
================================================================================ ================================================================================


|


|property_summary| Properties Summary
=====================================

================================================================================ ================================================================================
:attr:`~wx.TextAttr.Alignment`                                                   See :meth:`~wx.TextAttr.GetAlignment` and :meth:`~wx.TextAttr.SetAlignment`
:attr:`~wx.TextAttr.BackgroundColour`                                            See :meth:`~wx.TextAttr.GetBackgroundColour` and :meth:`~wx.TextAttr.SetBackgroundColour`
:attr:`~wx.TextAttr.BulletFont`                                                  See :meth:`~wx.TextAttr.GetBulletFont` and :meth:`~wx.TextAttr.SetBulletFont`
:attr:`~wx.TextAttr.BulletName`                                                  See :meth:`~wx.TextAttr.GetBulletName` and :meth:`~wx.TextAttr.SetBulletName`
:attr:`~wx.TextAttr.BulletNumber`                                                See :meth:`~wx.TextAttr.GetBulletNumber` and :meth:`~wx.TextAttr.SetBulletNumber`
:attr:`~wx.TextAttr.BulletStyle`                                                 See :meth:`~wx.TextAttr.GetBulletStyle` and :meth:`~wx.TextAttr.SetBulletStyle`
:attr:`~wx.TextAttr.BulletText`                                                  See :meth:`~wx.TextAttr.GetBulletText` and :meth:`~wx.TextAttr.SetBulletText`
:attr:`~wx.TextAttr.CharacterStyleName`                                          See :meth:`~wx.TextAttr.GetCharacterStyleName` and :meth:`~wx.TextAttr.SetCharacterStyleName`
:attr:`~wx.TextAttr.Flags`                                                       See :meth:`~wx.TextAttr.GetFlags` and :meth:`~wx.TextAttr.SetFlags`
:attr:`~wx.TextAttr.Font`                                                        See :meth:`~wx.TextAttr.GetFont` and :meth:`~wx.TextAttr.SetFont`
:attr:`~wx.TextAttr.FontEncoding`                                                See :meth:`~wx.TextAttr.GetFontEncoding` and :meth:`~wx.TextAttr.SetFontEncoding`
:attr:`~wx.TextAttr.FontFaceName`                                                See :meth:`~wx.TextAttr.GetFontFaceName` and :meth:`~wx.TextAttr.SetFontFaceName`
:attr:`~wx.TextAttr.FontFamily`                                                  See :meth:`~wx.TextAttr.GetFontFamily` and :meth:`~wx.TextAttr.SetFontFamily`
:attr:`~wx.TextAttr.FontSize`                                                    See :meth:`~wx.TextAttr.GetFontSize` and :meth:`~wx.TextAttr.SetFontSize`
:attr:`~wx.TextAttr.FontStyle`                                                   See :meth:`~wx.TextAttr.GetFontStyle` and :meth:`~wx.TextAttr.SetFontStyle`
:attr:`~wx.TextAttr.FontUnderlined`                                              See :meth:`~wx.TextAttr.GetFontUnderlined` and :meth:`~wx.TextAttr.SetFontUnderlined`
:attr:`~wx.TextAttr.FontWeight`                                                  See :meth:`~wx.TextAttr.GetFontWeight` and :meth:`~wx.TextAttr.SetFontWeight`
:attr:`~wx.TextAttr.LeftIndent`                                                  See :meth:`~wx.TextAttr.GetLeftIndent` and :meth:`~wx.TextAttr.SetLeftIndent`
:attr:`~wx.TextAttr.LeftSubIndent`                                               See :meth:`~wx.TextAttr.GetLeftSubIndent`
:attr:`~wx.TextAttr.LineSpacing`                                                 See :meth:`~wx.TextAttr.GetLineSpacing` and :meth:`~wx.TextAttr.SetLineSpacing`
:attr:`~wx.TextAttr.ListStyleName`                                               See :meth:`~wx.TextAttr.GetListStyleName` and :meth:`~wx.TextAttr.SetListStyleName`
:attr:`~wx.TextAttr.OutlineLevel`                                                See :meth:`~wx.TextAttr.GetOutlineLevel` and :meth:`~wx.TextAttr.SetOutlineLevel`
:attr:`~wx.TextAttr.ParagraphSpacingAfter`                                       See :meth:`~wx.TextAttr.GetParagraphSpacingAfter` and :meth:`~wx.TextAttr.SetParagraphSpacingAfter`
:attr:`~wx.TextAttr.ParagraphSpacingBefore`                                      See :meth:`~wx.TextAttr.GetParagraphSpacingBefore` and :meth:`~wx.TextAttr.SetParagraphSpacingBefore`
:attr:`~wx.TextAttr.ParagraphStyleName`                                          See :meth:`~wx.TextAttr.GetParagraphStyleName` and :meth:`~wx.TextAttr.SetParagraphStyleName`
:attr:`~wx.TextAttr.RightIndent`                                                 See :meth:`~wx.TextAttr.GetRightIndent` and :meth:`~wx.TextAttr.SetRightIndent`
:attr:`~wx.TextAttr.Tabs`                                                        See :meth:`~wx.TextAttr.GetTabs` and :meth:`~wx.TextAttr.SetTabs`
:attr:`~wx.TextAttr.TextColour`                                                  See :meth:`~wx.TextAttr.GetTextColour` and :meth:`~wx.TextAttr.SetTextColour`
:attr:`~wx.TextAttr.TextEffectFlags`                                             See :meth:`~wx.TextAttr.GetTextEffectFlags` and :meth:`~wx.TextAttr.SetTextEffectFlags`
:attr:`~wx.TextAttr.TextEffects`                                                 See :meth:`~wx.TextAttr.GetTextEffects` and :meth:`~wx.TextAttr.SetTextEffects`
:attr:`~wx.TextAttr.URL`                                                         See :meth:`~wx.TextAttr.GetURL` and :meth:`~wx.TextAttr.SetURL`
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: wx.TextAttr(object)

   **Possible constructors**::

       TextAttr()
       
       TextAttr(colText, colBack=NullColour, font=NullFont,
                alignment=TEXT_ALIGNMENT_DEFAULT)
       
       TextAttr(attr)
       
   
   TextAttr represents the character and paragraph attributes, or
   style, for a range of text in a TextCtrl or RichTextCtrl.



   .. method:: __init__(self, *args, **kw)

      Constructors.                   


      |overload| Overloaded Implementations:

      **~~~**

      
      **__init__** `(self)`
      
      
      
      
      
      **~~~**

      
      **__init__** `(self, colText, colBack=NullColour, font=NullFont, alignment=TEXT_ALIGNMENT_DEFAULT)`
      
      
      
      
      :param `colText`: 
      :type `colText`: wx.Colour
      :param `colBack`: 
      :type `colBack`: wx.Colour
      :param `font`: 
      :type `font`: wx.Font
      :param `alignment`: 
      :type `alignment`: wx.TextAttrAlignment
      
      
      
      
      
      
      **~~~**

      
      **__init__** `(self, attr)`
      
      
      
      
      :param `attr`: 
      :type `attr`: wx.TextAttr
      
      
      
      
      
      
      **~~~**






   .. method:: Apply(self, style, compareWith=None)

      Applies the attributes in `style`  to the original object, but not those attributes from `style`  that are the same as those in `compareWith`  (if passed).                  


      :param `style`: 
      :type `style`: wx.TextAttr
      :param `compareWith`: 
      :type `compareWith`: wx.TextAttr




      :rtype: `bool`








   .. method:: EqPartial(self, attr, weakTest=True)

      Partial equality test.                  

      If `weakTest`  is ``True``, attributes of this object do not have to be present if those attributes of `attr`  are present. If `weakTest`  is ``False``, the function will fail if an attribute is present in `attr`  but not in this object.                  


      :param `attr`: 
      :type `attr`: wx.TextAttr
      :param `weakTest`: 
      :type `weakTest`: bool




      :rtype: `bool`








   .. method:: GetAlignment(self)

      Returns the alignment flags.                  

      See :ref:`wx.TextAttrAlignment`  for a list of available styles.                  

      :rtype: :ref:`wx.TextAttrAlignment`








   .. method:: GetBackgroundColour(self)

      Returns the background colour.                  

      :rtype: :ref:`wx.Colour`








   .. method:: GetBulletFont(self)

      Returns a string containing the name of the font associated with the bullet symbol.                  

      Only valid for attributes with ``TEXT_ATTR_BULLET_SYMBOL``.                  

      :rtype: `string`








   .. method:: GetBulletName(self)

      Returns the standard bullet name, applicable if the bullet style is ``wx.TEXT_ATTR_BULLET_STYLE_STANDARD``.                  

      Currently the following standard bullet names are supported:

      -  ``standard/circle``       
      -  ``standard/square``       
      -  ``standard/diamond``       
      -  ``standard/triangle``       




                

      :rtype: `string`







      .. note:: 

         For :ref:`wx.richtext.RichTextCtrl`  users only: if you wish your rich text controls to support further bullet graphics, you can derive a class from :ref:`wx.richtext.RichTextRenderer`  or :ref:`wx.richtext.RichTextStdRenderer`, override  ``DrawStandardBullet``   and   ``EnumerateStandardBulletNames`` , and set an instance of the class using  :meth:`wx.richtext.RichTextBuffer.SetRenderer` .   








   .. method:: GetBulletNumber(self)

      Returns the bullet number.                  

      :rtype: `int`








   .. method:: GetBulletStyle(self)

      Returns the bullet style.                  

      See :ref:`wx.TextAttrBulletStyle`  for a list of available styles.                  

      :rtype: `int`








   .. method:: GetBulletText(self)

      Returns the bullet text, which could be a symbol, or (for example) cached outline text.                  

      :rtype: `string`








   .. method:: GetCharacterStyleName(self)

      Returns the name of the character style.                  

      :rtype: `string`








   .. method:: GetFlags(self)

      Returns flags indicating which attributes are applicable.                  

      See :meth:`SetFlags`   for a list of available flags.                  

      :rtype: `long`








   .. method:: GetFont(self)

      Creates and returns a font specified by the font attributes in the :ref:`wx.TextAttr`  object.                  

      Note that :ref:`wx.TextAttr`  does not store a :ref:`wx.Font`  object, so this is only a temporary font. 

      For greater efficiency, access the font attributes directly.                  

      :rtype: :ref:`wx.Font`








   .. method:: GetFontAttributes(self, font, flags=TEXT_ATTR_FONT)

      Gets the font attributes from the given font, using only the attributes specified by `flags`.                  


      :param `font`: 
      :type `font`: wx.Font
      :param `flags`: 
      :type `flags`: int




      :rtype: `bool`








   .. method:: GetFontEncoding(self)

      Returns the font encoding.                  

      :rtype: :ref:`wx.FontEncoding`








   .. method:: GetFontFaceName(self)

      Returns the font face name.                  

      :rtype: `string`








   .. method:: GetFontFamily(self)

      Returns the font family.                  

      :rtype: :ref:`wx.FontFamily`








   .. method:: GetFontSize(self)

      Returns the font size in points.                  

      :rtype: `int`








   .. method:: GetFontStyle(self)

      Returns the font style.                  

      :rtype: :ref:`wx.FontStyle`








   .. method:: GetFontUnderlined(self)

      Returns ``True`` if the font is underlined.                  

      :rtype: `bool`








   .. method:: GetFontWeight(self)

      Returns the font weight.                  

      :rtype: :ref:`wx.FontWeight`








   .. method:: GetLeftIndent(self)

      Returns the left indent in tenths of a millimetre.                  

      :rtype: `long`








   .. method:: GetLeftSubIndent(self)

      Returns the left sub-indent in tenths of a millimetre.                  

      :rtype: `long`








   .. method:: GetLineSpacing(self)

      Returns the line spacing value, one of :ref:`wx.TextAttrLineSpacing`  values.                  

      :rtype: `int`








   .. method:: GetListStyleName(self)

      Returns the name of the list style.                  

      :rtype: `string`








   .. method:: GetOutlineLevel(self)

      Returns the outline level.                  

      :rtype: `int`








   .. method:: GetParagraphSpacingAfter(self)

      Returns the space in tenths of a millimeter after the paragraph.                  

      :rtype: `int`








   .. method:: GetParagraphSpacingBefore(self)

      Returns the space in tenths of a millimeter before the paragraph.                  

      :rtype: `int`








   .. method:: GetParagraphStyleName(self)

      Returns the name of the paragraph style.                  

      :rtype: `string`








   .. method:: GetRightIndent(self)

      Returns the right indent in tenths of a millimeter.                  

      :rtype: `long`








   .. method:: GetTabs(self)

      Returns an array of tab stops, each expressed in tenths of a millimeter.                  

      Each stop is measured from the left margin and therefore each value must be larger than the last.                  

      :rtype: `list of integers`








   .. method:: GetTextColour(self)

      Returns the text foreground colour.                  

      :rtype: :ref:`wx.Colour`








   .. method:: GetTextEffectFlags(self)

      Returns the text effect bits of interest.                  

      See :meth:`SetFlags`   for further information.                  

      :rtype: `int`








   .. method:: GetTextEffects(self)

      Returns the text effects, a bit list of styles.                  

      See :meth:`SetTextEffects`   for details.                  

      :rtype: `int`








   .. method:: GetURL(self)

      Returns the URL for the content.                  

      Content with ``wx.TEXT_ATTR_URL``  style causes :ref:`wx.richtext.RichTextCtrl`  to show a hand cursor over it, and :ref:`wx.richtext.RichTextCtrl`  generates a :ref:`wx.TextUrlEvent`  when the content is clicked.                  

      :rtype: `string`








   .. method:: HasAlignment(self)

      Returns ``True`` if the attribute object specifies alignment.                  

      :rtype: `bool`








   .. method:: HasBackgroundColour(self)

      Returns ``True`` if the attribute object specifies a background colour.                  

      :rtype: `bool`








   .. method:: HasBulletName(self)

      Returns ``True`` if the attribute object specifies a standard bullet name.                  

      :rtype: `bool`








   .. method:: HasBulletNumber(self)

      Returns ``True`` if the attribute object specifies a bullet number.                  

      :rtype: `bool`








   .. method:: HasBulletStyle(self)

      Returns ``True`` if the attribute object specifies a bullet style.                  

      :rtype: `bool`








   .. method:: HasBulletText(self)

      Returns ``True`` if the attribute object specifies bullet text (usually specifying a symbol).                  

      :rtype: `bool`








   .. method:: HasCharacterStyleName(self)

      Returns ``True`` if the attribute object specifies a character style name.                  

      :rtype: `bool`








   .. method:: HasFlag(self, flag)

      Returns ``True`` if the `flag`  is present in the attribute object's flag bitlist.                  


      :param `flag`: 
      :type `flag`: long




      :rtype: `bool`








   .. method:: HasFont(self)

      Returns ``True`` if the attribute object specifies any font attributes.                  

      :rtype: `bool`








   .. method:: HasFontEncoding(self)

      Returns ``True`` if the attribute object specifies an encoding.                  

      :rtype: `bool`








   .. method:: HasFontFaceName(self)

      Returns ``True`` if the attribute object specifies a font face name.                  

      :rtype: `bool`








   .. method:: HasFontFamily(self)

      Returns ``True`` if the attribute object specifies a font family.                  

      :rtype: `bool`








   .. method:: HasFontItalic(self)

      Returns ``True`` if the attribute object specifies italic style.                  

      :rtype: `bool`








   .. method:: HasFontPixelSize(self)

      Returns ``True`` if the attribute object specifies a font pixel size.                  

      :rtype: `bool`








   .. method:: HasFontPointSize(self)

      Returns ``True`` if the attribute object specifies a font point size.                  

      :rtype: `bool`








   .. method:: HasFontSize(self)

      Returns ``True`` if the attribute object specifies a font point or pixel size.                  

      :rtype: `bool`








   .. method:: HasFontUnderlined(self)

      Returns ``True`` if the attribute object specifies either underlining or no underlining.                  

      :rtype: `bool`








   .. method:: HasFontWeight(self)

      Returns ``True`` if the attribute object specifies font weight (bold, light or normal).                  

      :rtype: `bool`








   .. method:: HasLeftIndent(self)

      Returns ``True`` if the attribute object specifies a left indent.                  

      :rtype: `bool`








   .. method:: HasLineSpacing(self)

      Returns ``True`` if the attribute object specifies line spacing.                  

      :rtype: `bool`








   .. method:: HasListStyleName(self)

      Returns ``True`` if the attribute object specifies a list style name.                  

      :rtype: `bool`








   .. method:: HasOutlineLevel(self)

      Returns ``True`` if the attribute object specifies an outline level.                  

      :rtype: `bool`








   .. method:: HasPageBreak(self)

      Returns ``True`` if the attribute object specifies a page break before this paragraph.                  

      :rtype: `bool`








   .. method:: HasParagraphSpacingAfter(self)

      Returns ``True`` if the attribute object specifies spacing after a paragraph.                  

      :rtype: `bool`








   .. method:: HasParagraphSpacingBefore(self)

      Returns ``True`` if the attribute object specifies spacing before a paragraph.                  

      :rtype: `bool`








   .. method:: HasParagraphStyleName(self)

      Returns ``True`` if the attribute object specifies a paragraph style name.                  

      :rtype: `bool`








   .. method:: HasRightIndent(self)

      Returns ``True`` if the attribute object specifies a right indent.                  

      :rtype: `bool`








   .. method:: HasTabs(self)

      Returns ``True`` if the attribute object specifies tab stops.                  

      :rtype: `bool`








   .. method:: HasTextColour(self)

      Returns ``True`` if the attribute object specifies a text foreground colour.                  

      :rtype: `bool`








   .. method:: HasTextEffects(self)

      Returns ``True`` if the attribute object specifies text effects.                  

      :rtype: `bool`








   .. method:: HasURL(self)

      Returns ``True`` if the attribute object specifies a URL.                  

      :rtype: `bool`








   .. method:: IsCharacterStyle(self)

      Returns ``True`` if the object represents a character style, that is, the flags specify a font or a text background or foreground colour.                  

      :rtype: `bool`








   .. method:: IsDefault(self)

      Returns ``False`` if we have any attributes set, ``True`` otherwise.                  

      :rtype: `bool`








   .. method:: IsParagraphStyle(self)

      Returns ``True`` if the object represents a paragraph style, that is, the flags specify alignment, indentation, tabs, paragraph spacing, or bullet style.                  

      :rtype: `bool`








   .. method:: Merge(self, *args, **kw)



      |overload| Overloaded Implementations:

      **~~~**

      
      **Merge** `(self, overlay)`
      
      Copies all defined/valid properties from overlay to current object.                  
      
      
      :param `overlay`: 
      :type `overlay`: wx.TextAttr
      
      
      
      
      
      
      **~~~**

      
      **Merge** `(base, overlay)`
      
      Creates a new  :ref:`wx.TextAttr`  which is a merge of  `base`  and `overlay`.                  
      
      Properties defined in `overlay`  take precedence over those in `base`. Properties undefined/invalid in both are undefined in the result.                  
      
      
      :param `base`: 
      :type `base`: wx.TextAttr
      :param `overlay`: 
      :type `overlay`: wx.TextAttr
      
      
      
      
      :rtype: :ref:`wx.TextAttr`
      
      
      
      
      
      
      
      **~~~**






   .. method:: SetAlignment(self, alignment)

      Sets the paragraph alignment.                  

      See :ref:`wx.TextAttrAlignment`  enumeration values. 

      Of these, ``wx.TEXT_ALIGNMENT_JUSTIFIED`` is unimplemented. In future justification may be supported when printing or previewing, only.                  


      :param `alignment`: 
      :type `alignment`: wx.TextAttrAlignment







   .. method:: SetBackgroundColour(self, colBack)

      Sets the background colour.                  


      :param `colBack`: 
      :type `colBack`: wx.Colour







   .. method:: SetBulletFont(self, font)

      Sets the name of the font associated with the bullet symbol.                  

      Only valid for attributes with ``TEXT_ATTR_BULLET_SYMBOL``.                  


      :param `font`: 
      :type `font`: string







   .. method:: SetBulletName(self, name)

      Sets the standard bullet name, applicable if the bullet style is ``wx.TEXT_ATTR_BULLET_STYLE_STANDARD``.                  

      See :meth:`GetBulletName`   for a list of supported names, and how to expand the range of supported types.                  


      :param `name`: 
      :type `name`: string







   .. method:: SetBulletNumber(self, n)

      Sets the bullet number.                  


      :param `n`: 
      :type `n`: int







   .. method:: SetBulletStyle(self, style)

      Sets the bullet style.                  

      The :ref:`wx.TextAttrBulletStyle`  enumeration values are all supported, except for ``wx.TEXT_ATTR_BULLET_STYLE_BITMAP``.                  


      :param `style`: 
      :type `style`: int







   .. method:: SetBulletText(self, text)

      Sets the bullet text, which could be a symbol, or (for example) cached outline text.                  


      :param `text`: 
      :type `text`: string







   .. method:: SetCharacterStyleName(self, name)

      Sets the character style name.                  


      :param `name`: 
      :type `name`: string







   .. method:: SetFlags(self, flags)

      Sets the flags determining which styles are being specified.                  

      The :ref:`wx.TextAttrFlags`  values can be passed in a bitlist.                  


      :param `flags`: 
      :type `flags`: long







   .. method:: SetFont(self, font, flags=TEXT_ATTR_FONT & ~TEXT_ATTR_FONT_PIXEL_SIZE)

      Sets the attributes for the given font.                  

      Note that :ref:`wx.TextAttr`  does not store an actual :ref:`wx.Font`  object.                  


      :param `font`: 
      :type `font`: wx.Font
      :param `flags`: 
      :type `flags`: int







   .. method:: SetFontEncoding(self, encoding)

      Sets the font encoding.                  


      :param `encoding`: 
      :type `encoding`: wx.FontEncoding







   .. method:: SetFontFaceName(self, faceName)

      Sets the font face name.                  


      :param `faceName`: 
      :type `faceName`: string







   .. method:: SetFontFamily(self, family)

      Sets the font family.                  


      :param `family`: 
      :type `family`: wx.FontFamily







   .. method:: SetFontPixelSize(self, pixelSize)

      Sets the font size in pixels.                  


      :param `pixelSize`: 
      :type `pixelSize`: int







   .. method:: SetFontPointSize(self, pointSize)

      Sets the font size in points.                  


      :param `pointSize`: 
      :type `pointSize`: int







   .. method:: SetFontSize(self, pointSize)

      Sets the font size in points.                  


      :param `pointSize`: 
      :type `pointSize`: int







   .. method:: SetFontStyle(self, fontStyle)

      Sets the font style (normal, italic or slanted).                  


      :param `fontStyle`: 
      :type `fontStyle`: wx.FontStyle







   .. method:: SetFontUnderlined(self, underlined)

      Sets the font underlining.                  


      :param `underlined`: 
      :type `underlined`: bool







   .. method:: SetFontWeight(self, fontWeight)

      Sets the font weight.                  


      :param `fontWeight`: 
      :type `fontWeight`: wx.FontWeight







   .. method:: SetLeftIndent(self, indent, subIndent=0)

      Sets the left indent and left subindent in tenths of a millimetre.                  

      The sub-indent is an offset from the left of the paragraph, and is used for all but the first line in a paragraph. 

      A positive value will cause the first line to appear to the left of the subsequent lines, and a negative value will cause the first line to be indented relative to the subsequent lines. 

      :ref:`wx.richtext.RichTextBuffer`  uses indentation to render a bulleted item. The left indent is the distance between the margin and the bullet. The content of the paragraph, including the first line, starts at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the left of the actual paragraph is leftSubIndent.                  


      :param `indent`: 
      :type `indent`: int
      :param `subIndent`: 
      :type `subIndent`: int







   .. method:: SetLineSpacing(self, spacing)

      Sets the line spacing.                  

      `spacing`  is a multiple, where 10 means single-spacing, 15 means 1.5 spacing, and 20 means float spacing. The :ref:`wx.TextAttrLineSpacing`  values are defined for convenience.                  


      :param `spacing`: 
      :type `spacing`: int







   .. method:: SetListStyleName(self, name)

      Sets the list style name.                  


      :param `name`: 
      :type `name`: string







   .. method:: SetOutlineLevel(self, level)

      Specifies the outline level.                  

      Zero represents normal text. At present, the outline level is not used, but may be used in future for determining list levels and for applications that need to store document structure information.                  


      :param `level`: 
      :type `level`: int







   .. method:: SetPageBreak(self, pageBreak=True)

      Specifies a page break before this paragraph.                  


      :param `pageBreak`: 
      :type `pageBreak`: bool







   .. method:: SetParagraphSpacingAfter(self, spacing)

      Sets the spacing after a paragraph, in tenths of a millimetre.                  


      :param `spacing`: 
      :type `spacing`: int







   .. method:: SetParagraphSpacingBefore(self, spacing)

      Sets the spacing before a paragraph, in tenths of a millimetre.                  


      :param `spacing`: 
      :type `spacing`: int







   .. method:: SetParagraphStyleName(self, name)

      Sets the name of the paragraph style.                  


      :param `name`: 
      :type `name`: string







   .. method:: SetRightIndent(self, indent)

      Sets the right indent in tenths of a millimetre.                  


      :param `indent`: 
      :type `indent`: int







   .. method:: SetTabs(self, tabs)

      Sets the tab stops, expressed in tenths of a millimetre.                  

      Each stop is measured from the left margin and therefore each value must be larger than the last.                  


      :param `tabs`: 
      :type `tabs`: list of integers







   .. method:: SetTextColour(self, colText)

      Sets the text foreground colour.                  


      :param `colText`: 
      :type `colText`: wx.Colour







   .. method:: SetTextEffectFlags(self, flags)

      Sets the text effect bits of interest.                  

      You should also pass ``wx.TEXT_ATTR_EFFECTS`` to :meth:`SetFlags` . See :meth:`SetFlags`   for further information.                  


      :param `flags`: 
      :type `flags`: int







   .. method:: SetTextEffects(self, effects)

      Sets the text effects, a bit list of styles.                  

      The :ref:`wx.TextAttrEffects`  enumeration values can be used. 

      Of these, only ``wx.TEXT_ATTR_EFFECT_CAPITALS``, ``wx.TEXT_ATTR_EFFECT_STRIKETHROUGH``, ``wx.TEXT_ATTR_EFFECT_SUPERSCRIPT`` and ``wx.TEXT_ATTR_EFFECT_SUBSCRIPT`` are implemented. 

      ``wx.TEXT_ATTR_EFFECT_CAPITALS`` capitalises text when displayed (leaving the case of the actual buffer text unchanged), and ``wx.TEXT_ATTR_EFFECT_STRIKETHROUGH`` draws a line through text. 

      To set effects, you should also pass ``wx.TEXT_ATTR_EFFECTS`` to :meth:`SetFlags` , and call :meth:`SetTextEffectFlags`   with the styles (taken from the above set) that you are interested in setting.                  


      :param `effects`: 
      :type `effects`: int







   .. method:: SetURL(self, url)

      Sets the URL for the content.                  

      Sets the ``wx.TEXT_ATTR_URL`` style; content with this style causes :ref:`wx.richtext.RichTextCtrl`  to show a hand cursor over it, and :ref:`wx.richtext.RichTextCtrl`  generates a :ref:`wx.TextUrlEvent`  when the content is clicked.                  


      :param `url`: 
      :type `url`: string







   .. attribute:: Alignment

      See :meth:`~wx.TextAttr.GetAlignment` and :meth:`~wx.TextAttr.SetAlignment`


   .. attribute:: BackgroundColour

      See :meth:`~wx.TextAttr.GetBackgroundColour` and :meth:`~wx.TextAttr.SetBackgroundColour`


   .. attribute:: BulletFont

      See :meth:`~wx.TextAttr.GetBulletFont` and :meth:`~wx.TextAttr.SetBulletFont`


   .. attribute:: BulletName

      See :meth:`~wx.TextAttr.GetBulletName` and :meth:`~wx.TextAttr.SetBulletName`


   .. attribute:: BulletNumber

      See :meth:`~wx.TextAttr.GetBulletNumber` and :meth:`~wx.TextAttr.SetBulletNumber`


   .. attribute:: BulletStyle

      See :meth:`~wx.TextAttr.GetBulletStyle` and :meth:`~wx.TextAttr.SetBulletStyle`


   .. attribute:: BulletText

      See :meth:`~wx.TextAttr.GetBulletText` and :meth:`~wx.TextAttr.SetBulletText`


   .. attribute:: CharacterStyleName

      See :meth:`~wx.TextAttr.GetCharacterStyleName` and :meth:`~wx.TextAttr.SetCharacterStyleName`


   .. attribute:: Flags

      See :meth:`~wx.TextAttr.GetFlags` and :meth:`~wx.TextAttr.SetFlags`


   .. attribute:: Font

      See :meth:`~wx.TextAttr.GetFont` and :meth:`~wx.TextAttr.SetFont`


   .. attribute:: FontEncoding

      See :meth:`~wx.TextAttr.GetFontEncoding` and :meth:`~wx.TextAttr.SetFontEncoding`


   .. attribute:: FontFaceName

      See :meth:`~wx.TextAttr.GetFontFaceName` and :meth:`~wx.TextAttr.SetFontFaceName`


   .. attribute:: FontFamily

      See :meth:`~wx.TextAttr.GetFontFamily` and :meth:`~wx.TextAttr.SetFontFamily`


   .. attribute:: FontSize

      See :meth:`~wx.TextAttr.GetFontSize` and :meth:`~wx.TextAttr.SetFontSize`


   .. attribute:: FontStyle

      See :meth:`~wx.TextAttr.GetFontStyle` and :meth:`~wx.TextAttr.SetFontStyle`


   .. attribute:: FontUnderlined

      See :meth:`~wx.TextAttr.GetFontUnderlined` and :meth:`~wx.TextAttr.SetFontUnderlined`


   .. attribute:: FontWeight

      See :meth:`~wx.TextAttr.GetFontWeight` and :meth:`~wx.TextAttr.SetFontWeight`


   .. attribute:: LeftIndent

      See :meth:`~wx.TextAttr.GetLeftIndent` and :meth:`~wx.TextAttr.SetLeftIndent`


   .. attribute:: LeftSubIndent

      See :meth:`~wx.TextAttr.GetLeftSubIndent`


   .. attribute:: LineSpacing

      See :meth:`~wx.TextAttr.GetLineSpacing` and :meth:`~wx.TextAttr.SetLineSpacing`


   .. attribute:: ListStyleName

      See :meth:`~wx.TextAttr.GetListStyleName` and :meth:`~wx.TextAttr.SetListStyleName`


   .. attribute:: OutlineLevel

      See :meth:`~wx.TextAttr.GetOutlineLevel` and :meth:`~wx.TextAttr.SetOutlineLevel`


   .. attribute:: ParagraphSpacingAfter

      See :meth:`~wx.TextAttr.GetParagraphSpacingAfter` and :meth:`~wx.TextAttr.SetParagraphSpacingAfter`


   .. attribute:: ParagraphSpacingBefore

      See :meth:`~wx.TextAttr.GetParagraphSpacingBefore` and :meth:`~wx.TextAttr.SetParagraphSpacingBefore`


   .. attribute:: ParagraphStyleName

      See :meth:`~wx.TextAttr.GetParagraphStyleName` and :meth:`~wx.TextAttr.SetParagraphStyleName`


   .. attribute:: RightIndent

      See :meth:`~wx.TextAttr.GetRightIndent` and :meth:`~wx.TextAttr.SetRightIndent`


   .. attribute:: Tabs

      See :meth:`~wx.TextAttr.GetTabs` and :meth:`~wx.TextAttr.SetTabs`


   .. attribute:: TextColour

      See :meth:`~wx.TextAttr.GetTextColour` and :meth:`~wx.TextAttr.SetTextColour`


   .. attribute:: TextEffectFlags

      See :meth:`~wx.TextAttr.GetTextEffectFlags` and :meth:`~wx.TextAttr.SetTextEffectFlags`


   .. attribute:: TextEffects

      See :meth:`~wx.TextAttr.GetTextEffects` and :meth:`~wx.TextAttr.SetTextEffects`


   .. attribute:: URL

      See :meth:`~wx.TextAttr.GetURL` and :meth:`~wx.TextAttr.SetURL`