CADability dotNET
Adds the strings of the given xml document to the string table.
Adds a single string to the Stringtable. This can be used for adding new strings or overriding existing strings.

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

Syntax

C#
public static void AddString(
	string language,
	string resourceID,
	StringTable..::..Category cat,
	string text
)
Visual Basic
Public Shared Sub AddString ( _
	language As String, _
	resourceID As String, _
	cat As StringTable..::..Category, _
	text As String _
)
Visual C++
public:
static void AddString(
	String^ language, 
	String^ resourceID, 
	StringTable..::..Category cat, 
	String^ text
)

Parameters

language
Type: System..::..String
the language of the string
resourceID
Type: System..::..String
the ID of the string
cat
Type: CADability.UserInterface..::..StringTable..::..Category
text
Type: System..::..String
the string

Remarks

See file "StringTable.xml" for the required xml schema.

See Also