ItemIdListGetPropertyVariantValue Method |
Gets property value of the shell item represented by this ItemIdList. Depending on the attribute requested, the value is converted into a matching type.
Namespace: Jam.ShellAssembly: ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.2
Syntaxpublic Object GetPropertyVariantValue(
SHCOLUMNID pShellColumnID
)
Public Function GetPropertyVariantValue (
pShellColumnID As SHCOLUMNID
) As Object
public:
Object^ GetPropertyVariantValue(
SHCOLUMNID pShellColumnID
)
member GetPropertyVariantValue :
pShellColumnID : SHCOLUMNID -> Object Parameters
- pShellColumnID SHCOLUMNID
- Identifier for the property.
Return Value
ObjectAn object representing the value of the property or null if there is no value or the property is not supported.
RemarksSearchScope will return an ItemIdList representing the search scope if the called instance represents a
SearchFolder.
Example
ItemIdList searchScope = itemIdList1.GetPropertyVariantValue(SHCOLUMNID.SearchScope) as ItemIdList;
string searchScopePath = itemIdList1.GetPropertyDisplayValue(SHCOLUMNID.SearchScope);
See Also