Poly2d.IsLongerThan Method

Checks if the length of this poly is longer than a given length. This is faster than checking if the length property is longer than a value, because it can break when the limit has been reached.
Public Function IsLongerThan( _ 
ByVal limit As Double
) As Boolean
This language is not supported or no code example is available.
public bool IsLongerThan( 
double limit 
)
This language is not supported or no code example is available.
public:  
bool IsLongerThan( 
double limit 
)
This language is not supported or no code example is available.
public function IsLongerThan( 
limit : double 
) : boolean;
This language is not supported or no code example is available.

Parameters

limit
double

The length to check if the poly is longer than.

Return Value

bool

true if the poly is longer than the given value.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition