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.

Definition

Namespace: EWSoftware.PDI.Parser
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2023.1.2.0
public static void ParseFromString(
	string vNoteText,
	VNote vNote
)

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

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);

See Also