/// <summary>
 /// @brief Create a new scheme and add it to the list of choices for when a new text entry is added.
 /// 				   @param id Numerical id associated with this scheme
 /// 				   @param fontColor The base text font color. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.
 /// 				   @param fontColorHL Color of text when being highlighted. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.
 /// 				   @param fontColorSel Color of text when being selected. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.)
 /// 
 /// </summary>
 public void addScheme(int id, ColorI fontColor, ColorI fontColorHL, ColorI fontColorSEL)
     {
     TorqueScriptTemplate.m_ts.fnGuiPopUpMenuCtrlEx_addScheme(_mSimObjectId, id, fontColor.AsString(), fontColorHL.AsString(), fontColorSEL.AsString());
     }
/// <summary>
/// @brief Create a new scheme and add it to the list of choices for when a new text entry is added.
/// 				   @param id Numerical id associated with this scheme
/// 				   @param fontColor The base text font color. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.
/// 				   @param fontColorHL Color of text when being highlighted. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.
/// 				   @param fontColorSel Color of text when being selected. Formatted as \"Red Green Blue\", each a numerical between 0 and 255.)
/// 
/// </summary>
public  void addScheme(string guipopupmenuctrlex, int id, ColorI fontColor, ColorI fontColorHL, ColorI fontColorSEL){
m_ts.fnGuiPopUpMenuCtrlEx_addScheme(guipopupmenuctrlex, id, fontColor.AsString(), fontColorHL.AsString(), fontColorSEL.AsString());
}
 /// <summary>
 /// Return the integer character code value corresponding to the first character in the given string.
 ///     )
 /// 
 /// </summary>
 public ColorI dnt_testcase_5(ColorI chr)
     {
     return new ColorI(m_ts.fn_dnt_testcase_5(chr.AsString()));
     }