TextItemsGetTextWithoutVocab Method |
Returns the text for the given index. If the text doesn't exist in the collection then the
defaultValue parameter is returned. Tenant-specific vocabulary is NOT applied.
This method is primarily provided for internal use when resolving tenant-specific
vocabulary to prevent the possibility of infinite recursion.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public string GetTextWithoutVocab(
string index,
string defaultValue,
string format
)
Public Function GetTextWithoutVocab (
index As String,
defaultValue As String,
format As String
) As String
Parameters
- index
- Type: SystemString
The index of the item. - defaultValue
- Type: SystemString
The value to return if the item is not found. - format
- Type: SystemString
The format specification to transform the item if the item is not a literal item.
Return Value
Type:
StringThe text for item if found, else the default value.
See Also