Poly2d.IsShorterThan Method

Checks if the length of this poly is shorter than a given length. This is faster than checning if the length property is shorter than a value, because it can break when the limit has been reached.
Public Function IsShorterThan( _ 
ByVal limit As Double
) As Boolean
This language is not supported or no code example is available.
public bool IsShorterThan( 
double limit 
)
This language is not supported or no code example is available.
public:  
bool IsShorterThan( 
double limit 
)
This language is not supported or no code example is available.
public function IsShorterThan( 
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 shorter than.

Return Value

bool

true if the poly is shorter 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