Verify if part of a boundary is selected by the user
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi.
I am having trouble in making a macro that verify if the user select part of a boundary like is shown in the picture.
I know the code that verify if the user selects surfaces:
INT count = 0
FOREACH surf in folder('model') {
$count = $count + number_selected(surf.Components)
}
IF $count == 0 {
MESSAGE INFO "Nao existe nenhuma superficie selecionada."
RETURN
}
But i can´t change it to a selected Boundary.
Can someone help.