VNote ParserParse From String(String, VNote) Method
This static method can be used to load property values into an existing 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
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public static void ParseFromString(
string vNoteText,
VNote vNote
)VB
Public Shared Sub ParseFromString (
vNoteText As String,
vNote As VNote
)C++
public:
static void ParseFromString(
String^ vNoteText,
VNote^ vNote
)F#
static member ParseFromString :
vNoteText : string *
vNote : VNote -> unit Parameters
Remarks
The properties of the specified vNote will be cleared before the new properties are loaded
into it.
Example
C#
VNote vNote = new VNote();
VNoteParser.ParseFromString(oneVNote, vNote);VB
Dim vNote As New VNote
VNoteParser.ParseFromString(oneVNote, vNote)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.