ILocationResolverIsInEnd Method |
Return true if the specified position is within the end position.
For example,
if the end 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 IsInEnd(
ILocation location,
int position
)
Function IsInEnd (
location As ILocation,
position As Integer
) As Boolean
bool IsInEnd(
ILocation^ location,
int position
)
abstract IsInEnd :
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 P\position is with in the end position else returns false.
See Also