Okapi .NET Library

IFilterItem.AppendChar Method 

 [This is preliminary documentation and subject to change.]

Appends a character to the text of the item.

[Visual Basic]
Sub AppendChar( _ 
   ByVal p_chValue As Char _ 
)
[C#]
void AppendChar(
   char p_chValue
);
[C++]
void AppendChar(
   wchar_t p_chValue
);
[JScript]
function AppendChar(
   char p_chValue
);

Parameters

p_chValue
Character to append.

Remarks

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

See Also

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