#include <ngscan.h>
Inheritance diagram for HidePropScan:
Public Member Functions | |
HidePropScan (UndoableOperation *pOp) | |
Constructs a HidePropScan object, which hides set properties for names highlighted in the Attribute gallery. | |
Protected Member Functions | |
virtual BOOL | Do (Node *) |
Excludes the given node from any highlighted sets in the Name Gallery. | |
Classes | |
class | HideProp |
Definition at line 360 of file ngscan.h.
|
Constructs a HidePropScan object, which hides set properties for names highlighted in the Attribute gallery.
Definition at line 1081 of file ngscan.cpp. 01082 : HideScan(pOp, &theSetSentinel) 01083 { 01084 // Empty. 01085 }
|
|
Excludes the given node from any highlighted sets in the Name Gallery.
Reimplemented from HideScan. Definition at line 1099 of file ngscan.cpp. 01100 { 01101 // If the object is a highlighted member of a "used names" set then hide its 01102 // properties. 01103 return HideProp(pNode, m_pOp).ForEach() == 0; 01104 }
|