Interface IWebTapered
A tapered web used in profiles.
Namespace: Oasys.Profiles
Assembly: cs.temp.dll.dll
Syntax
public interface IWebTapered : IWeb
Remarks
IWebTapered inherits IWeb.
For constant thickness web see IWebConstant.
Properties
BottomThickness
The bottom thickness.
Declaration
OasysUnits.Length BottomThickness { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the bottom thickness is not a positive and finite value. |
TopThickness
The top thickness.
Declaration
OasysUnits.Length TopThickness { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the top thickness is not a positive and finite value. |
Methods
Create(OasysUnits.Length, OasysUnits.Length)
Creates a new IWebTapered from its TopThickness and BottomThickness.
Declaration
static IWebTapered Create(OasysUnits.Length topThickness, OasysUnits.Length bottomThickness)
Parameters
| Type | Name | Description |
|---|---|---|
| OasysUnits.Length | topThickness | Defines the web's top thickness. |
| OasysUnits.Length | bottomThickness | Defines the web's bottom thickness. |
Returns
| Type | Description |
|---|---|
| IWebTapered | Tapered thickness web with the specified dimension. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any of its dimensions is not a positive and finite value. |