Interface IGeneralZProfile
A general z section profile.
Inherited Members
Namespace: Oasys.Profiles
Assembly: cs.temp.dll.dll
Syntax
public interface IGeneralZProfile : IProfile
Remarks
IGeneralZProfile inherits IProfile.
Properties
BottomFlangeWidth
The bottom flange width of the generic z section profile.
Declaration
OasysUnits.Length BottomFlangeWidth { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the bottom flange width is not a positive and finite value. |
BottomLip
The bottom lip of the generic z section profile.
Declaration
OasysUnits.Length BottomLip { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the bottom lip is not a positive and finite value. |
Depth
The depth of the generic z section profile.
Declaration
OasysUnits.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. |
Thickness
The thickness of the generic z section profile.
Declaration
OasysUnits.Length Thickness { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the thickness is not a positive and finite value. |
TopFlangeWidth
The top flange width of the generic z section profile.
Declaration
OasysUnits.Length TopFlangeWidth { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the top flange width is not a positive and finite value. |
TopLip
The top lip of the generic z section profile.
Declaration
OasysUnits.Length TopLip { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the top lip is not a positive and finite value. |
Methods
Create(OasysUnits.Length, OasysUnits.Length, OasysUnits.Length, OasysUnits.Length, OasysUnits.Length, OasysUnits.Length)
Creates a new IGeneralZProfile profile from its Depth, TopFlangeWidth, BottomFlangeWidth, TopLip, BottomLip and Thickness.
Declaration
static IGeneralZProfile Create(OasysUnits.Length depth, OasysUnits.Length topFlangeWidth, OasysUnits.Length bottomFlangeWidth, OasysUnits.Length topLip, OasysUnits.Length bottomLip, OasysUnits.Length thickness)
Parameters
| Type | Name | Description |
|---|---|---|
| OasysUnits.Length | depth | Defines the profile's depth. |
| OasysUnits.Length | topFlangeWidth | Defines the profile's top flange width. |
| OasysUnits.Length | bottomFlangeWidth | Defines the profile's bottom flange width. |
| OasysUnits.Length | topLip | Defines the profile's top lip. |
| OasysUnits.Length | bottomLip | Defines the profile's bottom lip. |
| OasysUnits.Length | thickness | Defines the profile's thickness. |
Returns
| Type | Description |
|---|---|
| IGeneralZProfile |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any of the dimensions is not a positive and finite value. |