Click or drag to resize

IMcImageSetGetSourcesAlongDimension Method

Gets all sources along a specified dimension starting at a specified location

Namespace:  MediaCy.IQL.Sets
Assembly:  MediaCy.IQL.Sets (in MediaCy.IQL.Sets.dll) Version: 10.0.6912.0
Syntax
VB
Function GetSourcesAlongDimension ( 
	Location As McImageSetLocations,
	Dimension As mcImageSetDimensions,
	Optional DesiredLength As Integer = -1
) As McImageSetSources

Parameters

Location
Type: MediaCy.IQL.SetsMcImageSetLocations
Dimension
Type: MediaCy.IQL.SetsmcImageSetDimensions
DesiredLength (Optional)
Type: SystemInt32

Return Value

Type: McImageSetSources
Remarks
Gets a McImageSetSources collection containing the sources representing a specified number of locations along a given dimension, starting at a given location. The Location collection can be Nothing (or empty), in which case the current location of the set will be used. Note that the location along the specified dimension will be ignored (sources will be returned for all locations along the specified dimension). This method can be used to sub-sample the set by providing an optional DesiredLength. Where the DesiredLength is omitted or the default value of IMAGESET_ALL_FRAMES (-1), all frames along the specified dimension will be returned. Where DesiredLength is less than that dimension's extent, the extent will be sub-sampled.
Note Note
This method is a simplification and specialization of the generic GetSources method. Parameters Location : The location within the set for which the sources should be returned Dimension : The dimension along which the sources should be returned. DesiredLength : If given, a desired length for number of returned sources.
See Also