Interface ITSectionProfile
Defines a Tee section profile.
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface ITSectionProfile : IProfile
Remarks
ITSectionProfile inherits IProfile.
The Tee profile is centered at the origin of its local coordinate system.
Properties
Depth
The depth of the T section 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 of the T section profile.
Declaration
IFlange Flange { get; set; }
Property Value
Type | Description |
---|---|
IFlange |
Web
The web of the T section profile.
Declaration
IWeb Web { get; set; }
Property Value
Type | Description |
---|---|
IWeb |
Methods
Create(Length, IFlange, IWeb)
Creates a new ITSectionProfile profile from its Depth, Flange and Web.
Declaration
static ITSectionProfile Create(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 thickness. |
IWeb | web | Defines the profile's web thickness. |
Returns
Type | Description |
---|---|
ITSectionProfile | Tee section profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of its dimensions is not a positive and finite value. |