Interface IAngleProfile
Defines an angle profile.
Inherited Members
Namespace: Oasys.Profiles
Assembly: cs.temp.dll.dll
Syntax
public interface IAngleProfile : IProfile
Remarks
IAngleProfile inherits IProfile.
The outside corner of the flange and web (min y and min z extent in the local coordinate system) is the origin of its local coordinate system.
Properties
Depth
The depth of the angle profile (leg in the local z axis).
Declaration
OasysUnits.Length Depth { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the depth is not a positive and finite value. |
Flange
The flange of the angle profile (leg in the local y axis).
Declaration
IFlange Flange { get; set; }
Property Value
| Type | Description |
|---|---|
| IFlange |
Web
The web of the angle profile.
Declaration
IWeb Web { get; set; }
Property Value
| Type | Description |
|---|---|
| IWeb |
Methods
Create(OasysUnits.Length, IFlange, IWeb)
Creates a new IAngleProfile profile from its Depth, Flange and Web.
Declaration
static IAngleProfile Create(OasysUnits.Length depth, IFlange flange, IWeb web)
Parameters
| Type | Name | Description |
|---|---|---|
| OasysUnits.Length | depth | Defines the profile's depth. |
| IFlange | flange | Defines the profile's flange. |
| IWeb | web | Defines the profile's web. |
Returns
| Type | Description |
|---|---|
| IAngleProfile | Angle profile with the specified dimensions. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any of its dimensions is not a positive and finite value. |