VNoteParserParseFromString(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: 2023.1.2.0
public static VNote ParseFromString(
	string vNoteText
)

Parameters

vNoteText  String
A set of properties for a single vNote in a string

Return Value

VNote
A new vNote instance as created from the string

Example

C#
VNote vNote = VNoteParser.ParseFromString(oneVNote);

See Also