This page contains reference documentation for the IsEdgeSelected function. This function returns 1 if the edge at 'EdgeIndex' is selected, or 0 if it is not selected.
int IsEdgeSelected( int EdgeIndex )
Function parameters are as follows:
Examples are as follows:
ParametricMesh editMesh = new ParametricMesh;
if ( editMesh.IsEdgeSelected(); )
{
// Do something
}
For sample code: