System.Boolean
Get/Set
The AlwaysAccept property indicates if the InBounds method should return true for all arguments. If the value of AlwaysAccept is true, then the InBounds method will return true for all arguments. If the value of AlwaysAccept is false, then the InBounds method will return true if and only if the CoordPoint passed as argument is within the bounds of this Envelope.
Private Sub GeoCalcNET_Envelope_AlwaysAccept(ByVal envelope As GeoCalcNET.Envelope)
Dim b As Boolean = envelope.AlwaysAccept
envelope.AlwaysAccept = False
End Sub
private void GeoCalcNET_Envelope_AlwaysAccept(GeoCalcNET.Envelope env)
{
bool b = env.AlwaysAccept;
env.AlwaysAccept = true;
}