LOCCOV Method (String, Object) |
Command option name strings that need to be localized should call this function. The COV function
doesn't actually do anything but return the original string. The LocalizationProcessor application walks
through the source code of a project and looks for LOC.COV. The function is then replaced with a
call to Localization.LocalizeCommandOptionValue using a unique context ID.
Namespace:
Rhino.UI
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static LocalizeStringPair COV(
string english,
Object assemblyFromObject
)
Public Shared Function COV (
english As String,
assemblyFromObject As Object
) As LocalizeStringPair
Parameters
- english
- Type: SystemString
[in] The English string to localize. - assemblyFromObject
- Type: SystemObject
[in] The object that identifies the assembly that owns the command option value.
Return Value
Type:
LocalizeStringPairReturns localized string pair with both the English and local names set to the English value.
See Also