Hi, |
Re: isFiltered for every view of a module There are the next(Object, Filter) and previous(Object, Filter) variants that take a filter as an argument but I am not sure that those will help you with running only once through the objects... Regards, Mathias Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS |
Re: isFiltered for every view of a module
Usually exports only export what is currently displayed, and if so then every objects you export is indeed not filtered out.
bool IsFilterd = isFiltered(obj)
bool IsVisible = isVisible(obj)
if ( IsVisible and IsFilterd) display "Visible"
elseif ( IsVislble and !IsFilterd) display "Visible, but not Filtered"
elseif (!IsVislble and IsFilterd) display "InVisible, but Filtered"
elseif (!IsVisible and !IsFilterd) display "InVisible"
else{} // all cases covered
|