Interface IWebTapered
A tapered web used in profiles.
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IWebTapered : IWeb
Remarks
IWebTapered inherits IWeb.
For constant thickness web see IWebConstant.
Properties
BottomThickness
The bottom thickness.
Declaration
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
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(Length, Length)
Creates a new IWebTapered from its TopThickness and BottomThickness.
Declaration
static IWebTapered Create(Length topThickness, 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. |