Okapi .NET Library

IFilterItem.HasText Method 

 [This is preliminary documentation and subject to change.]

Indicator whether the item has at least one text character.

[Visual Basic]
Function HasText( _ 
   ByVal p_bWhiteSpaceIsText As Boolean _ 
) As Boolean
[C#]
bool HasText(
   bool p_bWhiteSpaceIsText
);
[C++]
bool HasText(
   bool p_bWhiteSpaceIsText
);
[JScript]
function HasText(
   bool p_bWhiteSpaceIsText
): bool;

Parameters

p_bWhiteSpaceIsText
True if white-spaces should be treated as text.

Return Value

True if the item has at least one character (including spaces).

Remarks

Use this method to query whether the text item contains text.

See Also

IFilterItem Interface | Okapi.Library.Filter Namespace | GetCode