forked from OfficeDev/outlook-add-in-command-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AllProps.html
168 lines (163 loc) · 7.39 KB
/
AllProps.html
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
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE.txt in the project root for license information. -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title></title>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/1.0/fabric.min.css" />
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/1.0/fabric.components.min.css" />
<script src="../Assets/Scripts/jquery.fabric.js" type="text/javascript"></script>
<link href="../App.css" rel="stylesheet" type="text/css" />
<script src="../App.js" type="text/javascript"></script>
<script src="AllProps.js" type="text/javascript"></script>
</head>
<body>
<div id="content-header">
<div class="padding">
<h1 class="ms-font-xl ms-fontWeight-light ms-fontColor-white">All properties</h1>
</div>
</div>
<div id="content-main" class="ms-Grid">
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<h2 class="ms-font-l">Standard properties</h2>
<div class="ms-Table">
<div class="ms-Table-row">
<span class="ms-Table-cell">Property</span>
<span class="ms-Table-cell">Value</span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">dateTimeCreated</span>
<span id="dateTimeCreated" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">dateTimeModified</span>
<span id="dateTimeModified" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">itemClass</span>
<span id="itemClass" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">itemId</span>
<span id="itemId" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">itemType</span>
<span id="itemType" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">body (HTML)</span>
<span id="bodyHtml" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">body (Text)</span>
<span id="bodyText" class="ms-Table-cell"></span>
</div>
</div>
</div>
</div>
<div id="message-props" class="ms-Grid-row hidden">
<div class="ms-Grid-col ms-u-sm12">
<h2 class="ms-font-l">Message-specific properties</h2>
<div class="ms-Table">
<div class="ms-Table-row">
<span class="ms-Table-cell">Property</span>
<span class="ms-Table-cell">Value</span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">attachments</span>
<span id="attachments" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">cc</span>
<span id="cc" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">conversationId</span>
<span id="conversationId" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">from</span>
<span id="from" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">internetMessageId</span>
<span id="internetMessageId" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">normalizedSubject</span>
<span id="normalizedSubject" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">sender</span>
<span id="sender" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">subject</span>
<span id="subject" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">to</span>
<span id="to" class="ms-Table-cell"></span>
</div>
</div>
</div>
</div>
<div id="appointment-props" class="ms-Grid-row hidden">
<div class="ms-Grid-col ms-u-sm12">
<h2 class="ms-font-l">Appointment-specific properties</h2>
<div class="ms-Table">
<div class="ms-Table-row">
<span class="ms-Table-cell">Property</span>
<span class="ms-Table-cell">Value</span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">attachments</span>
<span id="appt-attachments" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">end</span>
<span id="end" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">location</span>
<span id="location" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">normalizedSubject</span>
<span id="appt-normalizedSubject" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">optionalAttendees</span>
<span id="optionalAttendees" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">organizer</span>
<span id="organizer" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">requiredAttendees</span>
<span id="requiredAttendees" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">resources</span>
<span id="resources" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">start</span>
<span id="start" class="ms-Table-cell"></span>
</div>
<div class="ms-Table-row">
<span class="ms-Table-cell ms-fontWeight-semibold">subject</span>
<span id="appt-subject" class="ms-Table-cell"></span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>