Interface ICruciformSymmetricalProfile
A cruciform section profile.
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface ICruciformSymmetricalProfile : IProfile
Remarks
ICruciformSymmetricalProfile inherits IProfile.
Properties
Depth
The depth of the profile.
Declaration
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 (y axis leg) of the cruciform.
Declaration
IFlange Flange { get; set; }
Property Value
Type | Description |
---|---|
IFlange |
Web
The web (z axis leg) thickness of the cruciform.
Declaration
IWebConstant Web { get; set; }
Property Value
Type | Description |
---|---|
IWebConstant |
Methods
Create(Length, IFlange, IWebConstant)
Creates a new ICruciformSymmetricalProfile profile from its Depth, Flange and Web.
Declaration
static ICruciformSymmetricalProfile Create(Length depth, IFlange flange, IWebConstant web)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | depth | Defines the profile's depth. |
IFlange | flange | Defines the profile's flange (the y axis leg of the cruciform). |
IWebConstant | web | Defines the profile's web (z axis leg thickness of the cruciform). |
Returns
Type | Description |
---|---|
ICruciformSymmetricalProfile | Cruciform profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of the dimensions is not a positive and finite value. |