Okapi .NET Library

IFilterItem.AppendText Method 

 [This is preliminary documentation and subject to change.]

Appends a string to the text of the item.

[Visual Basic]
Sub AppendText( _ 
   ByVal p_sValue As String _ 
)
[C#]
void AppendText(
   string p_sValue
);
[C++]
void AppendText(
   String* p_sValue
);
[JScript]
function AppendText(
   String p_sValue
);

Parameters

p_sValue
String to append.

Remarks

Use this method to add text at the end of the current text. To add an inline code use the AppendCode method. To add a character use the AppendChar method.

See Also

IFilterItem Interface | Okapi.Library.Filter Namespace | AppendCode | AppendChar