Click or drag to resize

ICommenceDatabaseAppendText Method

Appends text to an existing text Field. Use this command to overcome the 256 character maximum string limitation of certain macro languages (such as WordBasic). Whenever possible, use a clarified item name. You are strongly advised to use a ICommenceEditRowSet for editing fields instead.

When an item was just created with AddItem(String, String, String) or AddSharedItem(String, String, String), this is the item that will be used for appending. Otherwise, unless you specifically mark an item (using GetMarkItem(String, String, String) or MarkActiveItem(String)) the first match will be used.

Namespace:  Vovin.CmcLibNet.Database
Assembly:  Vovin.CmcLibNet (in Vovin.CmcLibNet.dll) Version: 1.0.7729.42686
Syntax
bool AppendText(
	string categoryName,
	string itemName,
	string fieldName,
	string text
)

Parameters

categoryName
Type: SystemString
Commence category name.
itemName
Type: SystemString
Commence item name to edit.
fieldName
Type: SystemString
Commence field to edit.
text
Type: SystemString
Textvalue to append.

Return Value

Type: Boolean
true on success, inspect GetLastError on failure.
See Also