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