Class FeatureListHelper
Inheritance
FeatureListHelper
Assembly: CAMAPI.DotnetHelper.dll
Syntax
public static class FeatureListHelper
Methods
Count(ComWrapper<ICamApiFeatureList>)
Number of features in the list
Declaration
public static int Count(this ComWrapper<ICamApiFeatureList> listCom)
Parameters
Returns
Enumerate(ComWrapper<ICamApiFeatureList>)
Iterates over all features in the list.
Each item is disposed by the enumerator after the caller's loop body — do not dispose manually.
Declaration
public static IEnumerable<ComWrapper<ICamApiFeature>> Enumerate(this ComWrapper<ICamApiFeatureList> listCom)
Parameters
Returns
GetFeature(ComWrapper<ICamApiFeatureList>, int)
Feature by index (0..Count-1)
Declaration
public static ComWrapper<ICamApiFeature> GetFeature(this ComWrapper<ICamApiFeatureList> listCom, int index)
Parameters
Returns