public static int getGlobalParameterInt(string parameter, string m_token, PowerMILL.PluginServices m_services) { string str = Gets.getGlobalParameterString(parameter, m_token, m_services); return(int.Parse(str.Trim())); }
public static double getGlobalParameterDouble(string parameter, string m_token, PowerMILL.PluginServices m_services) { string str = Gets.getGlobalParameterString(parameter, m_token, m_services); return(getCultureInvariantDouble(str)); }
public static bool getGlobalParameterBool(string parameter, string m_token, PowerMILL.PluginServices m_services) { string str = Gets.getGlobalParameterString(parameter, m_token, m_services); return(str.Trim() == "1"); }