DicomObjects.NetStandard Documentation
DicomObjects Namespace / DicomImage Class / SetMaskRanges Method



In This Topic
    SetMaskRanges Method
    In This Topic

    Contains an array of DicomMaskRange objects to be applied to this image.

    See the DicomMaskRange object for more information on how this is used.

    Syntax
    'Declaration
     
    
    Public Sub SetMaskRanges( _
       ByVal value() As DicomMaskRange _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim value() As DicomMaskRange
     
    instance.SetMaskRanges(value)
    public void SetMaskRanges( 
       DicomMaskRange[] value
    )
    public:
    void SetMaskRanges( 
       array<DicomMaskRange^>^ value
    ) 

    Parameters

    value
    Remarks
    If this property is changed, then the internal caches are cleared automatically, but if you change individual elements of the array without chaning the array itself, then it is necessary to call ClearCaches explicitly.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also