/// <summary> /// This function retrieves the value of an aluminum design overwrite item. /// </summary> /// <param name="name">The name of a frame object with an aluminum frame design procedure.</param> /// <param name="item">The overwrite item considered.</param> /// <param name="value">The value of the considered overwrite item.</param> /// <param name="programDetermined">True: The specified value is program determined.</param> /// <exception cref="CSiException">API_DEFAULT_ERROR_CODE</exception> public void GetOverwrite(string name, eOverwrites_AA_LRFD_2000 item, ref double value, ref bool programDetermined) { _callCode = _sapModel.DesignAluminum.AA_LRFD_2000.GetOverwrite(name, (int)item, ref value, ref programDetermined); if (throwCurrentApiException(_callCode)) { throw new CSiException(API_DEFAULT_ERROR_CODE); } }
/// <summary> /// This function sets the value of an aluminum design overwrite item. /// </summary> /// <param name="name">The name of an existing frame object or group, depending on the value of the <paramref name="itemType" /> item.</param> /// <param name="item">The overwrite item considered.</param> /// <param name="value">The value of the considered overwrite item.</param> /// <param name="itemType">If this item is <see cref="eItemType.Object" />, the assignment is made to the frame object specified by the <paramref name="name" /> item. /// If this item is <see cref="eItemType.Group" />, the assignment is made to all frame objects in the group specified by the <paramref name="name" /> item. /// If this item is <see cref="eItemType.SelectedObjects" />, assignment is made to all selected frame objects, and the <paramref name="name" /> item is ignored.</param> /// <exception cref="CSiException">API_DEFAULT_ERROR_CODE</exception> public void SetOverwrite(string name, eOverwrites_AA_LRFD_2000 item, double value, eItemType itemType = eItemType.Object) { _callCode = _sapModel.DesignAluminum.AA_LRFD_2000.SetOverwrite(name, (int)item, value, EnumLibrary.Convert <eItemType, CSiProgram.eItemType>(itemType)); if (throwCurrentApiException(_callCode)) { throw new CSiException(API_DEFAULT_ERROR_CODE); } }
public void SetOverwrite(string name, eOverwrites_AA_LRFD_2000 item, double value, eItemType itemType = eItemType.Object) { }
public void GetOverwrite(string name, eOverwrites_AA_LRFD_2000 item, ref double value, ref bool programDetermined) { }