Click or drag to resize

McMMOptionsSelMeasurements Property

Read only property that returns collection of selected measurements.

Namespace:  MediaCy.Addins.Measurements
Assembly:  MediaCy.Addins.Measurements (in MediaCy.Addins.Measurements.dll) Version: 3.1.0.0
Syntax
VB
Public ReadOnly Property SelMeasurements As MeasCollection
	Get

Return Value

Type: MeasCollection
Collection of selected measurements

Implements

IMcMOptionsSelMeasurements
Remarks
Each measurement is a String.
Examples
VB
Sub PrintSelectedMeasurementNames()
    Dim OutStr As String
    'print column titles
    Dim md As McMMData = ThisApplication.ActiveImage.MeasurementsData
    For Each Meas As MeasEntry In md.Options.SelMeasurements
        OutStr = OutStr + Chr(9) + Meas.CombinedName
    Next
    ThisApplication.Output.PrintMessage(OutStr)
End Sub
See Also