[This is preliminary documentation and is subject to change.]
Possible orders of source of localized string
Namespace: Tools.ComponentModelTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public enum enmLookUpOrder |
| Visual Basic |
|---|
Public Enumeration enmLookUpOrder |
| Visual C++ |
|---|
public enum class enmLookUpOrder |
| F# |
|---|
type enmLookUpOrder |
| JScript |
|---|
public enum enmLookUpOrder |
Members
| Member name | Value | Description | |
|---|---|---|---|
| ResourceFirst | 0 | The GetLocalizedString(String) function looks in resource specified in the Resource first. If Static (Shared in Visual Basic) String property with name PropertyName is not found then return result of GetLocalizedString(String). | |
| NETFirst | 1 | The GetLocalizedString(String) function first calls GetLocalizedString(String). If the result is an empty string then looks for Static (Shared in Visual Basic) String property with name spacifiedn in PropertyName of type specified in Resource and returns its value of found or an empty string if not. | |
| ResourceOnly | 2 | The GetLocalizedString(String) function looks only for Static (Shared in Visual Basic) String property with name specified in PropertyName of type specified in Resource. If the property is found then returns its value otherwise returns an empty string. | |
| IsFlags | Gets value indicating if given value is of enum type which has FlagsAttribute applied | ||
| GetName | Gets name of given enumeration value | ||
| GetConstant | Gets constant field that represents given enum value | ||
| GetValue | Gets value of enum in its unedlying type | ||
| IsDefined | Gets value idicating if given value is defined as constant in enumeration |
Remarks
Determines the behavior of the GetLocalizedString(String) function.