VCalendar ParserParse From String(String, VCalendar) Method
This static method can be used to load property values into an existing instance of a calendar from a
string.
Definition
Namespace: EWSoftware.PDI.Parser
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static void ParseFromString(
string calendarText,
VCalendar calendar
)VB
Public Shared Sub ParseFromString (
calendarText As String,
calendar As VCalendar
)C++
public:
static void ParseFromString(
String^ calendarText,
VCalendar^ calendar
)F#
static member ParseFromString :
calendarText : string *
calendar : VCalendar -> unit Parameters
Remarks
The properties of the specified calendar will be cleared before the new properties are
loaded into it.
Example
C#
VCalendar vCalendar = new VCalendar();
VCalendarParser.ParseFromString(calendarString, vCalendar);VB
Dim vCalendar As New VCalendar
VCalendarParser.ParseFromString(calendarString, vCalendar)C++
No code example is currently available or this language may not be supported.F#
No code example is currently available or this language may not be supported.