blob: 8a27e4516f3cf02fc747fc47cfd46595161c53c0 (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ContentAlignment undocumented
type ContentAlignment int
const (
// ContentAlignmentVLeft undocumented
ContentAlignmentVLeft ContentAlignment = 0
// ContentAlignmentVRight undocumented
ContentAlignmentVRight ContentAlignment = 1
// ContentAlignmentVCenter undocumented
ContentAlignmentVCenter ContentAlignment = 2
)
// ContentAlignmentPLeft returns a pointer to ContentAlignmentVLeft
func ContentAlignmentPLeft() *ContentAlignment {
v := ContentAlignmentVLeft
return &v
}
// ContentAlignmentPRight returns a pointer to ContentAlignmentVRight
func ContentAlignmentPRight() *ContentAlignment {
v := ContentAlignmentVRight
return &v
}
// ContentAlignmentPCenter returns a pointer to ContentAlignmentVCenter
func ContentAlignmentPCenter() *ContentAlignment {
v := ContentAlignmentVCenter
return &v
}
|