ExtendedCalendar Constructor (String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, AccessRole, KeyValuePairReminderMethods, Int32, Boolean) |
Initializes a new instance of the ExtendedCalendar class.
Namespace:
Aspose.Email.Clients.Google
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic ExtendedCalendar(
string id,
string eTag,
string summary,
string description,
string location,
string timeZone,
string summaryOverride,
string colorId,
string backgroundColor,
string foregroundColor,
bool hidden,
bool selected,
AccessRole accessRole,
KeyValuePair<ReminderMethods, int>[] defaultReminders,
bool primary
)
Public Sub New (
id As String,
eTag As String,
summary As String,
description As String,
location As String,
timeZone As String,
summaryOverride As String,
colorId As String,
backgroundColor As String,
foregroundColor As String,
hidden As Boolean,
selected As Boolean,
accessRole As AccessRole,
defaultReminders As KeyValuePair(Of ReminderMethods, Integer)(),
primary As Boolean
)
public:
ExtendedCalendar(
String^ id,
String^ eTag,
String^ summary,
String^ description,
String^ location,
String^ timeZone,
String^ summaryOverride,
String^ colorId,
String^ backgroundColor,
String^ foregroundColor,
bool hidden,
bool selected,
AccessRole accessRole,
array<KeyValuePair<ReminderMethods, int>>^ defaultReminders,
bool primary
)
new :
id : string *
eTag : string *
summary : string *
description : string *
location : string *
timeZone : string *
summaryOverride : string *
colorId : string *
backgroundColor : string *
foregroundColor : string *
hidden : bool *
selected : bool *
accessRole : AccessRole *
defaultReminders : KeyValuePair<ReminderMethods, int>[] *
primary : bool -> ExtendedCalendar
Parameters
- id
- Type: SystemString
Identifier of the resource. - eTag
- Type: SystemString
An entity tag - summary
- Type: SystemString
Title of the calendar. - description
- Type: SystemString
Description of the calendar. - location
- Type: SystemString
Geographic location of the calendar as free-form text. - timeZone
- Type: SystemString
The time zone of the calendar. - summaryOverride
- Type: SystemString
The summary that the authenticated user has set for this calendar. - colorId
- Type: SystemString
The color of the calendar. This is an ID referring to an entry in the "calendar" section of the colors definition (see the "colors" endpoint). - backgroundColor
- Type: SystemString
The main color of the calendar in the format '#0088aa'. This property supersedes the index-based colorId property. - foregroundColor
- Type: SystemString
The foreground color of the calendar in the format '#ffffff'. This property supersedes the index-based colorId property. - hidden
- Type: SystemBoolean
Whether the calendar has been hidden from the list. The default is False. - selected
- Type: SystemBoolean
Whether the calendar content shows up in the calendar UI. The default is False. - accessRole
- Type: Aspose.Email.Clients.GoogleAccessRole
The effective access role that the authenticated user has on the calendar. Read-only. Possible values are: - defaultReminders
- Type: System.Collections.GenericKeyValuePairReminderMethods, Int32
The default reminders that the authenticated user has for this calendar. - primary
- Type: SystemBoolean
Whether the calendar is the primary calendar of the authenticated user. Read-only. The default is False.
See Also