ILocationResolverIsInStart Method |
Return true if the specified position is within the start position.
For example,
if the start data of a location is "23.40", this method will
return true for the position values ranging from 23 to 40.
Namespace: Bio.IO.GenBankAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax bool IsInStart(
ILocation location,
int position
)
Function IsInStart (
location As ILocation,
position As Integer
) As Boolean
bool IsInStart(
ILocation^ location,
int position
)
abstract IsInStart :
location : ILocation *
position : int -> bool
Parameters
- location
- Type: Bio.IO.GenBankILocation
Location instance. - position
- Type: SystemInt32
Position to be verified.
Return Value
Type:
BooleanReturns true if the specified position is with in the start position else returns false.
See Also