Description

Get a filtered copy of the calibration collection.

Return Type

A McIntensityCalibs object.  

A filtered list of calibrations (which may be empty).

Syntax

object.GetFilteredList (IncludeFlags, ExcludeFlags)

The GetFilteredList Method syntax has these parts:

PartDescription
objectAn expression evaluating to an object of type McIntensityCalibs.
IncludeFlagsRequired. A mccfCalibFlags enumeration, as described in settings.

The flags that should be present on all matching calibrations.

ExcludeFlagsRequired. A mccfCalibFlags enumeration, as described in settings.

The flags that should be absent on all matching calibrations.

Settings

The settings for IncludeFlags are:

ConstantValueDescription
 mccfIsReference1

If set, the calibration is a reference calibration

 mccfIsSystem2

If set, the calibration is the system calibration

 mccfWasDerived256

If set, the calibration was derived from another calibration masks

 mccfUserFlags-65536

Flags for use by user

 mccfAddFlags-65281

All unmasked flags are ignored by AddEx and Flags property assignment

 mccfNoFlags0
 mccfAllFlags-1

The settings for ExcludeFlags are:

ConstantValueDescription
 mccfIsReference1

If set, the calibration is a reference calibration

 mccfIsSystem2

If set, the calibration is the system calibration

 mccfWasDerived256

If set, the calibration was derived from another calibration masks

 mccfUserFlags-65536

Flags for use by user

 mccfAddFlags-65281

All unmasked flags are ignored by AddEx and Flags property assignment

 mccfNoFlags0
 mccfAllFlags-1

Remarks

There are several types of intensity calibrations. Reference calibrations typically correspond to the optical properties of your samples, and are persisted from one application session to the next. This function will return a collection filtered on your specified required or disallowed calibration flags (see Examples).

Note: The main collection will automatically be updated when a calibration is made a reference or non-reference calibration (by setting the Flags property of the calibration) but any other lists outstanding that have been returned by this function will not be updated.