/// <summary> /// Returns the value of a concrete design overwrite item. /// </summary> /// <param name="name">The name of a frame object with a concrete 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"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception> public void GetOverwrite(string name, eOverwrites_Eurocode_2_2004 item, ref double value, ref bool programDetermined) { _callCode = _sapModel.DesignConcrete.Eurocode_2_2004.GetOverwrite(name, (int)item, ref value, ref programDetermined); if (throwCurrentApiException(_callCode)) { throw new CSiException(API_DEFAULT_ERROR_CODE); } }
/// <summary> /// Sets the value of a concrete 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"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception> public void SetOverwrite(string name, eOverwrites_Eurocode_2_2004 item, double value, eItemType itemType = eItemType.Object) { _callCode = _sapModel.DesignConcrete.Eurocode_2_2004.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_Eurocode_2_2004 item, double value, eItemType itemType = eItemType.Object) { }
public void GetOverwrite(string name, eOverwrites_Eurocode_2_2004 item, ref double value, ref bool programDetermined) { }