CalendarCreateSimple Method | |
Create a iCalendar entry
Namespace:
SIC.File
Assembly:
SIC (in SIC.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public static string[] CreateSimple(
string pSubject,
string pDescription,
DateTime pBeginDate,
DateTime pEndDate,
string pLocation = "",
bool pAllDay = true
)
Public Shared Function CreateSimple (
pSubject As String,
pDescription As String,
pBeginDate As DateTime,
pEndDate As DateTime,
Optional pLocation As String = "",
Optional pAllDay As Boolean = true
) As String()
Parameters
- pSubject
- Type: SystemString
title of calendar entry - pDescription
- Type: SystemString
content of calendar entry - pBeginDate
- Type: SystemDateTime
begin date time of meeting - pEndDate
- Type: SystemDateTime
end date time of meeting - pLocation (Optional)
- Type: SystemString
meeting point - pAllDay (Optional)
- Type: SystemBoolean
True set an all day (default); False set an appointment (with times)
Return Value
Type:
String[Missing <returns> documentation for "M:SIC.File.Calendar.CreateSimple(System.String,System.String,System.DateTime,System.DateTime,System.String,System.Boolean)"]
See Also