asiNeedSuffixEvaluation
asiNeedSuffixEvaluation(o_session) =>t/nil
Description
Specify whether the interface needs suffix evaluation or not. When this method returns t, the numeric suffixes specified in a numericString field will be evaluated. For example, suppose the start frequency field for the AC analysis has a value of 10M, asiGetFormattedVal(ac_start_fieldObj ) returns 1e7 provided it is created as a ‘numericString field.
Arguments
Value Returned
|
The Numeric suffix needs to be evaluated by the environment. |
|
|
The Numeric suffix need not be evaluated by the environment. |
Examples
The following example shows how to overload the asiNeedSuffixEvaluation function:
defmethod(asiNeedSuffixEvaluation (( session xyz_session ) fp )
nil
)
In this case, the numeric suffix will not be evaluated.
Return to top