Interface IRectangleHollowProfile
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IRectangleHollowProfile : IProfile
Remarks
IRectangleHollowProfile inherits IProfile.
The hollow rectangle is centered at the origin of its local coordinate system.
Properties
Depth
The depth of the hollow rectangle.
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. |
Flanges
The flanges (top and bottom) of the hollow rectangle. The flange width defines the profile's total width.
Declaration
IFlange Flanges { get; set; }
Property Value
Type | Description |
---|---|
IFlange |
Webs
The webs (side walls) of the hollow rectangle.
Declaration
IWebConstant Webs { get; set; }
Property Value
Type | Description |
---|---|
IWebConstant |
Methods
Create(Length, IFlange, IWebConstant)
Creates a new IRectangleHollowProfile profile from its Depth, Flanges Webs.
Declaration
static IRectangleHollowProfile Create(Length depth, IFlange flanges, IWebConstant webs)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | depth | Defines the profile's depth. |
IFlange | flanges | Defines the profile's flanges. |
IWebConstant | webs | Defines the profile's webs. |
Returns
Type | Description |
---|---|
IRectangleHollowProfile | Hollow rectangle profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of its dimensions is not a positive and finite value. |