VNote ParserParse From String(String) Method
This static method can be used to load property values into a new instance of a single vNote from a
string.
Definition
Namespace: EWSoftware.PDI.Parser
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
A new vNote instance as created from the string
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static VNote ParseFromString(
string vNoteText
)VB
Public Shared Function ParseFromString (
vNoteText As String
) As VNoteC++
public:
static VNote^ ParseFromString(
String^ vNoteText
)F#
static member ParseFromString :
vNoteText : string -> VNote Parameters
- vNoteText String
- A set of properties for a single vNote in a string
Return Value
VNoteA new vNote instance as created from the string
Example
C#
VNote vNote = VNoteParser.ParseFromString(oneVNote);VB
Dim vNote As VNote = VNoteParser.ParseFromString(oneVNote)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.