Interface IChannelProfile
Defines a channel profile.
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IChannelProfile : IProfile
Remarks
IChannelProfile 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 channel 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. |
Flanges
The flanges of the channel profile.
Declaration
IFlange Flanges { get; set; }
Property Value
Type | Description |
---|---|
IFlange |
Web
The web of the channel profile.
Declaration
IWebConstant Web { get; set; }
Property Value
Type | Description |
---|---|
IWebConstant |
Methods
Create(Length, IFlange, IWebConstant)
Creates a new IChannelProfile profile from its Depth, Flanges and Web
Declaration
static IChannelProfile Create(Length depth, IFlange flanges, IWebConstant web)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | depth | Defines the profile's depth. |
IFlange | flanges | Defines the profile's flanges. |
IWebConstant | web | Defines the profile's web which has constant thickness. |
Returns
Type | Description |
---|---|
IChannelProfile | Channel profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of its dimensions is not a positive and finite value. |