Avoid selecting point

Hi,

How to avoid selecting point(like line start point,end point,arc center)
in mask.

I am using(Blockstyler selection block)
selection0->GetProperties()->SetSelectionFilter("SelectionFilter",Selection::SelectionAction::SelectionActionClearAndEnableSpecific,mask);

in mask i am using
( UF_line_type, 0, 0 );
( UF_circle_type, 0, 0 );
( UF_conic_type, 0, 0 );
( UF_edge_type, 0, 0 );
( UF_solid_type, 0, UF_UI_SEL_FEATURE_ANY_EDGE);
( UF_section_edge_type, 0, 0 );
( UF_solid_silhouette_type, 0, 0 );
I have to restrict selecting point in drafting view.
Thanks

I don't have example code for it, but it is my understanding that the blockstyler allows you to query and control the user's current snap settings. You can set the object snaps as desired in your code.

OK!Thanks for the quick reply, i will look into that