GetQueryableAttributeValue Method

Returns the value of the queryable attribute with the specified name.

Class:OceanColorLevel3SMIFileSearcher
Intended use:Recommended for external callers
COM:Not exposed by a COM class
ArcGIS:Not exposed as an ArcGIS geoprocessing tool
Method type:Instance Method

Usage

value = collection.GetQueryableAttributeValue(name)

Arguments

name
Python type:unicode
Minimum length:1

Name of the queryable attribute to return the value of.

Returns

value
Python type:object or None

Value of the queryable attribute with the specified name. If one is not defined for this object, the chain of parent dataset collections (if any) will be searched, starting with the immediate parent. If one is still not found, None will be returned.

None will also be returned if a queryable attribute is found but the value of it is None. To determine whether None was returned because the attribute's value was None or because the attribute does not exist, use GetQueryableAttribute() to determine if the queryable attribute exists.