是否可以避免在NSTokenField中删除令牌(在选择令牌后按删除键)? 如果是这样,请帮我提供示例代码。 谢谢。
答案 0 :(得分:0)
实施NO
并检查commandSelector是否等于model time_event
Real x(start = 0) "state variable for this example";
parameter T_ch = 5 "time at which the system dynamics undergoes a change";
equation
if time <= T_ch then
der(x) = x + 1;
end if;
if time > T_ch then
der(x) = -x;
end if;
end time_event;
。还要检查当前选择是否代表令牌。如果两者都为真,请返回-(void)yourFunctionName {
//your code here
}
。