示例#1
0
 /// <summary>Get Name of value by position in communication table</summary>
 /// <param name="ValuePosition">Position in table</param>
 /// <returns>Name of value (empty string, if not found)</returns>
 public string GetValueName(byte ValuePosition)
 {
     if (mLanguage != null)
     {
         return(mLanguage.GetValueName(ValuePosition));
     }
     else
     {
         throw new NullReferenceException("Language block not initialized");
     }
 }