示例#1
0
 /// <summary>
 /// This function sets the value of a steel design preference item.
 /// </summary>
 /// <param name="item">The preference item considered.</param>
 /// <param name="value">The value of the considered preference item.</param>
 /// <exception cref="CSiException"></exception>
 public void SetPreference(ePreferences_AISC_ASD_89 item,
                           double value)
 {
     _callCode = _sapModel.DesignSteel.AISC_ASD89.SetPreference((int)item, value);
     if (throwCurrentApiException(_callCode))
     {
         throw new CSiException();
     }
 }
 /// <summary>
 /// Returns the value of a steel design preference item.
 /// </summary>
 /// <param name="item">The preference item considered.</param>
 /// <param name="value">The value of the considered preference item.</param>
 /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception>
 public void GetPreference(ePreferences_AISC_ASD_89 item,
                           ref double value)
 {
     _callCode = _sapModel.DesignSteel.AISC_ASD89.GetPreference((int)item, ref value);
     if (throwCurrentApiException(_callCode))
     {
         throw new CSiException(API_DEFAULT_ERROR_CODE);
     }
 }
示例#3
0
 public void SetPreference(ePreferences_AISC_ASD_89 item,
                           double value)
 {
 }