本文整理汇总了C#中Contract.AlarmType方法的典型用法代码示例。如果您正苦于以下问题:C# Contract.AlarmType方法的具体用法?C# Contract.AlarmType怎么用?C# Contract.AlarmType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Contract
的用法示例。
在下文中一共展示了Contract.AlarmType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddContractAutoAlarm
private void AddContractAutoAlarm(Contract contract, Double margin, AlarmActions action)
{
//If theres already an alarm then leave it alone
if (alarms.Any(a => a.ContractGUID == contract.ContractGuid))
return;
//log
LogFormatted("Adding new {3} Contract Alarm for: {0}({1})-{2}", contract.Title, contract.ContractGuid, contract.DateExpire, contract.ContractState);
//gen the text
String AlarmName, AlarmNotes;
GenerateContractStringsFromContract(contract, out AlarmName, out AlarmNotes);
//create the alarm
KACAlarm tmpAlarm = new KACAlarm("", AlarmName, AlarmNotes, contract.DateNext() - margin, margin,
KACAlarm.AlarmTypeEnum.ContractAuto, action);
//add the contract specifics
tmpAlarm.ContractGUID = contract.ContractGuid;
tmpAlarm.ContractAlarmType = contract.AlarmType();
//add it to the list
alarms.Add(tmpAlarm);
}
示例2: GenerateContractStringsFromContract
private void GenerateContractStringsFromContract(Contract c, out String AlarmName, out String AlarmNotes)
{
AlarmName = c.Title;
AlarmNotes = String.Format("{0}\r\nName: {1}\r\nParameters:", c.AlarmType().Description(), c.Synopsys);
foreach (ContractParameter cp in c.AllParameters)
{
AlarmNotes += String.Format("\r\n * {0}", cp.Title);
}
}