VNoteParserParseFromString(String, VNote) Method
This static method can be used to load property values into an existing instance of a single vNote
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 vNoteText,
VNote vNote
)
Public Shared Sub ParseFromString (
vNoteText As String,
vNote As VNote
)
public:
static void ParseFromString(
String^ vNoteText,
VNote^ vNote
)
static member ParseFromString :
vNoteText : string *
vNote : VNote -> unit
Parameters
- vNoteText String
- A set of properties for a single vNote in a string
- vNote VNote
- The vNote instance into which the properties will be loaded
The properties of the specified vNote will be cleared before the new properties are loaded
into it.
VNote vNote = new VNote();
VNoteParser.ParseFromString(oneVNote, vNote);
Dim vNote As New VNote
VNoteParser.ParseFromString(oneVNote, vNote)
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.