v4.0
Returns a ProjectItemCollection containing the objects that are being inspected by a Property Page. The only case where the collection will contain more than one object is if the Property Page is in Multi-edit mode. This should not be confused with the case where a single Property Page frame is inspecting multiple objects at the same time, one above the other.
' Example SPDL logic
sub OnInit
for each item in PPG.Inspected
'Turn the string name into an object pointer
Application.LogMessage "Inspected object " & item & " has " & item.Parameters.Count & " parameters"
next
end sub
|