LocationResolverIsInStart 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 public bool IsInStart(
ILocation location,
int position
)
Public Function IsInStart (
location As ILocation,
position As Integer
) As Boolean
public:
virtual bool IsInStart(
ILocation^ location,
int position
) sealed
abstract IsInStart :
location : ILocation *
position : int -> bool
override 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.
Implements
ILocationResolverIsInStart(ILocation, Int32)See Also