예제 #1
0
 /// <summary>
 /// This function sets the value of a concrete 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_KCI_1999 item,
                           double value)
 {
     _callCode = _sapModel.DesignConcrete.KCI_1999.SetPreference((int)item, value);
     if (throwCurrentApiException(_callCode))
     {
         throw new CSiException();
     }
 }
예제 #2
0
 /// <summary>
 /// This function retrieves the value of a concrete 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">API_DEFAULT_ERROR_CODE</exception>
 public void GetPreference(ePreferences_KCI_1999 item,
                           ref double value)
 {
     _callCode = _sapModel.DesignConcrete.KCI_1999.GetPreference((int)item, ref value);
     if (throwCurrentApiException(_callCode))
     {
         throw new CSiException(API_DEFAULT_ERROR_CODE);
     }
 }
예제 #3
0
 public void SetPreference(ePreferences_KCI_1999 item,
                           double value)
 {
 }