v4.0
このプロパティは下位互換を取るためのプロパティです。通常はPPG.Inspectedを使用するほうが便利です。
プロパティページによって検証されるオブジェクトの文字列を戻します。リストの中に複数のオブジェクトが含まれるのはプロパティページがマルチ編集モードの場合のみです。
' Example SPDL logic. (Compare with the similar example under PPG.Inspected topic)
sub OnInit
Dim inspectedObjectNameArray
Application.LogMessage "We are inspecting " & PPG.InspectedObjects
inspectedObjectNameArray = split( PPG.InspectedObjects, "," )
for each item in inspectedObjectNameArray
'Turn the string name into an object pointer
set oNamePSet = GetValue( item )
Application.LogMessage "Inspected object " & oNamePSet & " has " & oNamePSet.Parameters.Count & " parameters"
next
end sub
|