CADability dotNET
Returns an array of strings from the string table. The array is created from a single entry in the string table. The first character of this entry is the separator and the remaining string is splitted by this separator.

Namespace: CADability.UserInterface
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public static string[] GetSplittedStrings(
	string Name
)
Visual Basic
Public Shared Function GetSplittedStrings ( _
	Name As String _
) As String()
Visual C++
public:
static array<String^>^ GetSplittedStrings(
	String^ Name
)

Parameters

Name
Type: System..::..String
Name or ID of the string

Return Value

The exploded string

See Also