 | ISectionFactoryGetParametricRectangularSectionAsync Method |
Returns a parametric rectangular section with given parameters
Namespace: TSD.API.Remoting.SectionsAssembly: TSD.API.Remoting (in TSD.API.Remoting.dll) Version: 23.1.0.154
SyntaxTask<IParametricRectangularSection> GetParametricRectangularSectionAsync(
MaterialType materialType,
double depth,
double breadth,
CancellationToken cancellationToken = default
)
Function GetParametricRectangularSectionAsync (
materialType As MaterialType,
depth As Double,
breadth As Double,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IParametricRectangularSection)
Task<IParametricRectangularSection^>^ GetParametricRectangularSectionAsync(
MaterialType materialType,
double depth,
double breadth,
CancellationToken cancellationToken = CancellationToken()
)
abstract GetParametricRectangularSectionAsync :
materialType : MaterialType *
depth : float *
breadth : float *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<IParametricRectangularSection>
Parameters
- materialType MaterialType
- The material type of section
- depth Double
- The depth (in [mm])
- breadth Double
- The breadth (in [mm])
- cancellationToken CancellationToken (Optional)
- The optional cancellation token
Return Value
TaskIParametricRectangularSectionA parametric rectangular section with given parameters
See Also