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