5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ContentAlignmentEnum.go

34 lines
886 B
Go
Raw Normal View History

// 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
}