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.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public Object GetPropertyVariantValue(
SHCOLUMNID pShellColumnID
)
Public Function GetPropertyVariantValue (
pShellColumnID As SHCOLUMNID
) As Object
public:
Object^ GetPropertyVariantValue(
SHCOLUMNID pShellColumnID
)
member GetPropertyVariantValue :
pShellColumnID : SHCOLUMNID -> Object
Parameters
- pShellColumnID
- Type: Jam.ShellSHCOLUMNID
Identifier for the property.
Return Value
Type:
ObjectAn object representing the value of the property or null if there is no value or the property is not supported.
Remarks SearchScope will return an ItemIdList representing the search scope if the called instance represents a
SearchFolder.
Examples
ItemIdList searchScope = itemIdList1.GetPropertyVariantValue(SHCOLUMNID.SearchScope) as ItemIdList;
string searchScopePath = itemIdList1.GetPropertyDisplayValue(SHCOLUMNID.SearchScope);
See Also