VCalendar ParserParse From String(String) Method
This static method can be used to load property values into a new 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
A new calendar instance as created from the string
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static VCalendar ParseFromString(
string calendarText
)VB
Public Shared Function ParseFromString (
calendarText As String
) As VCalendarC++
public:
static VCalendar^ ParseFromString(
String^ calendarText
)F#
static member ParseFromString :
calendarText : string -> VCalendar Parameters
- calendarText String
- A set of calendar properties in a string
Return Value
VCalendarA new calendar instance as created from the string
Example
C#
VCalendar vCal = VCalendarParser.ParseFromString(calendar);VB
Dim vCal As VCalendar = VCalendarParser.ParseFromString(calendar)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.