|
Element1DStatesCollectionTryGetRange Method
|
Namespace:
Karamba.Elements
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic bool TryGetRange(
double from,
double to,
out IList<Element1DState> statesInRange
)
Public Function TryGetRange (
from As Double,
to As Double,
<OutAttribute> ByRef statesInRange As IList(Of Element1DState)
) As Boolean
public:
bool TryGetRange(
double from,
double to,
[OutAttribute] IList<Element1DState^>^% statesInRange
)
member TryGetRange :
from : float *
to : float *
statesInRange : IList<Element1DState> byref -> bool
Parameters
- from
- Type: SystemDouble
Domain's start. - to
- Type: SystemDouble
Domain's end. - statesInRange
- Type: System.Collections.GenericIListElement1DState
When this method returns, the Element1DStates
associated with the specified domain, if the are found;
otherwise .
Return Value
Type:
Boolean when succeed,
otherwise.
See Also