Click or drag to resize

IMcImageSetActiveDisplayRegion Property

Returns the region describing the region of the set that is actively displayed.

Namespace:  MediaCy.IQL.Sets
Assembly:  MediaCy.IQL.Sets (in MediaCy.IQL.Sets.dll) Version: 10.0.6912.0
Syntax
VB
Property ActiveDisplayRegion As McImageSetRegion
	Get
	Set

Property Value

Type: McImageSetRegion
Remarks
Returns a McImageSetRegion object that defines the region of the set that is currently displayed in the active view. This may be used as the portion of the set that will be processed by operations, depending on the value of UseActiveRegion. Until the active display region is set, the region will be updated for any changes to the set dimensionality. However, after the application has set the region, the region will only be updated to assure that it does not include portions of the set that were removed by edits to the set's dimensionality. The ActiveDisplayRegion can be set to Nothing or to an empty region to remove any previously established region. Except for the mcisdResolution dimension, any dimension that is omitted from the provided region will be defaulted to use the entire extent of that dimension. This can also be specified by using an Extent of -1, so the full extent of any dimension can be specified by a Location of 0 (zero) and an Extent of -1. An omitted mcisdResolution dimension results in only the 0th position along the mcisdResolution dimension being included in the region. Note that the active display region's Sections will always be ordered by the set dimensions, so that a statement such as: theSet.ActiveDisplayRegion.Sections(mcisdZ) will access the active region for the specified dimension (in this example, the Z dimension).
See Also