[This is preliminary documentation and is subject to change.]

Possible orders of source of localized string

Namespace: Tools.ComponentModelT
Assembly: 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 nameValueDescription
ResourceFirst0 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).
NETFirst1 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.
ResourceOnly2The 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.
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

Remarks

Determines the behavior of the GetLocalizedString(String) function.

See Also