StructuralSettingsSetValuesForLoadsDisplayScaling Method |
Sets values for loads display scaling by providing two load forces and their corresponding length of the representative lines in internal units.
Namespace: Autodesk.Revit.DB.StructureAssembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntaxpublic void SetValuesForLoadsDisplayScaling(
double minimumLoadValue,
double minimumForceLineLength,
double maximumLoadValue,
double maximumForceLineLength
)
Public Sub SetValuesForLoadsDisplayScaling (
minimumLoadValue As Double,
minimumForceLineLength As Double,
maximumLoadValue As Double,
maximumForceLineLength As Double
)
public:
void SetValuesForLoadsDisplayScaling(
double minimumLoadValue,
double minimumForceLineLength,
double maximumLoadValue,
double maximumForceLineLength
)
member SetValuesForLoadsDisplayScaling :
minimumLoadValue : float *
minimumForceLineLength : float *
maximumLoadValue : float *
maximumForceLineLength : float -> unit
Parameters
- minimumLoadValue Double
-
The minimum force in SpecTypeId.Force units.
- minimumForceLineLength Double
-
The line length for minimum force.
- maximumLoadValue Double
-
The maximum force in SpecTypeId.Force units.
- maximumForceLineLength Double
-
The line length for maximum force.
ExceptionsException | Condition |
---|
ArgumentsInconsistentException |
Thrown when:
- forces are negative.
- line lengths are negative.
- minimum force is greater or equal to the maximum force.
- line length for minimum force is greater than line length for maximum force.
|
Remarks
Use UnitUtils class methods to convert value from or to internal units.
The values are used to scale the representation of all load types(point, line and area loads).
See Also