Nevron Open Vision Documentation
Nevron.Nov.Graphics Namespace / NSize Structure / Union Method / Union(NSize,NSize,NSize) Method


In This Topic
    Union(NSize,NSize,NSize) Method
    In This Topic
    Returns a size whose width is the max of size1.Width, size2.Height and size3.Width, and whose height is the max of size1.Height, size2.Height and size3.Height.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Union( _
       ByVal size1 As NSize, _
       ByVal size2 As NSize, _
       ByVal size3 As NSize _
    ) As NSize
    'Usage
     
    
    Dim size1 As NSize
    Dim size2 As NSize
    Dim size3 As NSize
    Dim value As NSize
     
    value = NSize.Union(size1, size2, size3)
    public static NSize Union( 
       NSize size1,
       NSize size2,
       NSize size3
    )

    Parameters

    size1
    size2
    size3
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also