Interface IFlange
A flange used in profiles.
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IFlange
Properties
Thickness
The flange thickness.
Declaration
Length Thickness { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the flange thickness is not a positive and finite value. |
Width
The flange width.
Declaration
Length Width { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the flange width is not a positive and finite value. |
Methods
Create(Length, Length)
Declaration
static IFlange Create(Length width, Length thickness)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | width | Defines the flange width. |
OasysUnits.Length | thickness | Defines the flange thickness. |
Returns
Type | Description |
---|---|
IFlange | Flange with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of its dimensions is not a positive and finite value. |