-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable styling.gs
80 lines (67 loc) · 3.38 KB
/
table styling.gs
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
styleTitle = {}
styleTitle[DocumentApp.Attribute.FONT_SIZE] = 9;
styleTitle[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.LEFT;
styleTitle[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleTitle[DocumentApp.Attribute.BOLD] = false;
styleTitle[DocumentApp.Attribute.BACKGROUND_COLOR] = '#ccefff';
styleHeaderTable = {}
styleHeaderTable[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleHeaderTable[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleHeaderTable[DocumentApp.Attribute.FONT_SIZE] = 9;
styleHeaderTable[DocumentApp.Attribute.BOLD] = true;
styleTable = {}
styleTable[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleTable[DocumentApp.Attribute.VERTICAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleTable[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleTable[DocumentApp.Attribute.FONT_SIZE] = 9;
styleTable[DocumentApp.Attribute.BOLD] = false;
styleHeaderCell = {}
styleHeaderCell[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleHeaderCell[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleHeaderCell[DocumentApp.Attribute.FONT_SIZE] = 9;
styleHeaderCell[DocumentApp.Attribute.BOLD] = true;
styleFirstColumnCell = {}
styleFirstColumnCell[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.LEFT;
styleFirstColumnCell[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleFirstColumnCell[DocumentApp.Attribute.FONT_SIZE] = 9;
styleFirstColumnCell[DocumentApp.Attribute.BOLD] = false;
styleCell = {}
styleCell[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleCell[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleCell[DocumentApp.Attribute.FONT_SIZE] = 9;
styleCell[DocumentApp.Attribute.BOLD] = false;
styleFooter = {}
styleFooter[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.RIGHT;
styleFooter[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleFooter[DocumentApp.Attribute.FONT_SIZE] = 9;
styleFooter[DocumentApp.Attribute.BOLD] = false;
styleAlert ={}
styleAlert[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.RIGHT;
styleAlert[DocumentApp.Attribute.FOREGROUND_COLOR] ='#FF3300';
styleNormal = {}
styleTable[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleTable[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri';
styleTable[DocumentApp.Attribute.FONT_SIZE] = 9;
styleTable[DocumentApp.Attribute.BOLD] = false;
styleNote = {}
styleNote[DocumentApp.Attribute.FONT_SIZE] = 9;
styleCentered = {}
styleCentered[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleHighlight = {}
styleHighlight[DocumentApp.Attribute.BOLD] = true;
styleHighlight[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] =
DocumentApp.HorizontalAlignment.CENTER;
styleHighlight[DocumentApp.Attribute.BACKGROUND_COLOR] = '#ffcccc';
styleImage = {}
styleImage[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.RIGHT;