/// <summary> /// This function retrieves the value of a steel design overwrite item. /// </summary> /// <param name="name">The name of a frame object with a steel 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"></exception> public void GetOverwrite(string name, eOverwrites_AISC_LRFD_93 item, ref double value, ref bool programDetermined) { _callCode = _sapModel.DesignSteel.AISC_LRFD93.GetOverwrite(name, (int)item, ref value, ref programDetermined); if (throwCurrentApiException(_callCode)) { throw new CSiException(); } }
/// <summary> /// This function sets the value of a steel 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"></exception> public void SetOverwrite(string name, eOverwrites_AISC_LRFD_93 item, double value, eItemType itemType = eItemType.Object) { _callCode = _sapModel.DesignSteel.AISC_LRFD93.SetOverwrite(name, (int)item, value, EnumLibrary.Convert <eItemType, CSiProgram.eItemType>(itemType)); if (throwCurrentApiException(_callCode)) { throw new CSiException(); } }
public void SetOverwrite(string name, eOverwrites_AISC_LRFD_93 item, double value, eItemType itemType = eItemType.Object) { }
public void GetOverwrite(string name, eOverwrites_AISC_LRFD_93 item, ref double value, ref bool programDetermined) { }