internal static string GetDestinationName(InterlinDestination dest)
		{
			var stid = "ksFld" + dest;
			return ITextStrings.ResourceManager.GetString(stid) ?? dest.ToString();
		}
        internal static string GetDestinationName(InterlinDestination dest)
        {
            var stid = "ksFld" + dest;

            return(ITextStrings.ResourceManager.GetString(stid) ?? dest.ToString());
        }
Exemple #3
0
        public static string GetDestinationNameFromResource(InterlinDestination dest, ResourceManager rm)
        {
            var stid = "ksFld" + dest;

            return(rm.GetString(stid) ?? dest.ToString());
        }
Exemple #4
0
 protected virtual string GetDestinationName(InterlinDestination destEnum)
 {
     return(GetDestinationNameFromResource(destEnum, LexTextControls.ResourceManager));
 }
		public static string GetDestinationNameFromResource(InterlinDestination dest, ResourceManager rm)
		{
			var stid = "ksFld" + dest;
			return rm.GetString(stid) ?? dest.ToString();
		}
		protected virtual string GetDestinationName(InterlinDestination destEnum)
		{
			return GetDestinationNameFromResource(destEnum, LexTextControls.ResourceManager);
		}