We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074dfab commit 9fd1384Copy full SHA for 9fd1384
Classes/PHPWord.php
@@ -39,8 +39,22 @@
39
class PHPWord
40
{
41
42
+ /**
43
+ * Default font name (Arial)
44
+ */
45
const DEFAULT_FONT_NAME = 'Arial';
46
+
47
48
+ * Default font size in points (10pt)
49
+ *
50
+ * OOXML defined font size values in halfpoints, i.e. twice of what PHPWord
51
+ * use, and the conversion will be conducted during XML writing.
52
53
const DEFAULT_FONT_SIZE = 10;
54
55
56
+ * Default font color (black)
57
58
const DEFAULT_FONT_COLOR = '000000';
59
60
/**
0 commit comments