Interface IRectoEllipseProfile
A rectangular section profile with elliptical corners.
Inherited Members
Namespace: Oasys.Profiles
Assembly: cs.temp.dll.dll
Syntax
public interface IRectoEllipseProfile : IProfile
Remarks
IRectoEllipseProfile inherits IProfile.
Properties
Depth
The overall depth of the recto-ellipse 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. |
DepthFlat
The flat length of the profile's overall depth.
Declaration
OasysUnits.Length DepthFlat { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the length is not a positive and finite value. |
Width
The overall width of the recto-ellipse profile.
Declaration
OasysUnits.Length Width { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the width is not a positive and finite value. |
WidthFlat
The flat length of the profile's overall width.
Declaration
OasysUnits.Length WidthFlat { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the length is not a positive and finite value. |
Methods
Create(OasysUnits.Length, OasysUnits.Length, OasysUnits.Length, OasysUnits.Length)
Creates a new IRectoEllipseProfile profile from its Depth, DepthFlat, Width and WidthFlat.
Declaration
static IRectoEllipseProfile Create(OasysUnits.Length depth, OasysUnits.Length depthFlat, OasysUnits.Length width, OasysUnits.Length widthFlat)
Parameters
| Type | Name | Description |
|---|---|---|
| OasysUnits.Length | depth | Defines the overall depth of the profile. |
| OasysUnits.Length | depthFlat | Defines the flat length of the profile's overall depth. |
| OasysUnits.Length | width | Defines the overall width of the profile. |
| OasysUnits.Length | widthFlat | Defines the flat length of the profile's overall width. |
Returns
| Type | Description |
|---|---|
| IRectoEllipseProfile |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any of the dimensions is not a positive and finite value. |