Interface IIBeamAsymmetricalProfile
An IBeam asymmetrical profile.
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IIBeamAsymmetricalProfile : IIBeamProfile, IProfile
Remarks
IIBeamProfile inherits IIBeamProfile and IProfile.
The I-beam is centered at the origin of its local coordinate system.
Properties
BottomFlange
The bottom flange of the beam. Bottom is relative to the beam local access.
Declaration
IFlange BottomFlange { get; set; }
Property Value
Type | Description |
---|---|
IFlange |
TopFlange
The top flange of the beam. Top is relative to the beam local access.
Declaration
IFlange TopFlange { get; set; }
Property Value
Type | Description |
---|---|
IFlange |
Web
The web of the beam.
Declaration
IWeb Web { get; set; }
Property Value
Type | Description |
---|---|
IWeb |
Methods
Create(Length, IFlange, IFlange, IWeb)
Creates a new IIBeamAsymmetricalProfile profile from its Depth, TopFlange, BottomFlange and Web.
Declaration
static IIBeamAsymmetricalProfile Create(Length depth, IFlange topFlange, IFlange bottomFlange, IWeb web)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | depth | Defines the profile's depth. |
IFlange | topFlange | Defines the profile's top flange. |
IFlange | bottomFlange | Defines the profile's bottom flange. |
IWeb | web | Defines the profile's web. |
Returns
Type | Description |
---|---|
IIBeamAsymmetricalProfile | I-beam-asymmetrical profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the depth is not a positive and finite value. |