VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging Namespace / ComplexMatrix Class / Item Property
Syntax Requirements SeeAlso
In This Topic
    Item Property (ComplexMatrix)
    In This Topic
    Indexer for the ComplexMatrix class.
    Syntax
    'Declaration
    
    Public Default Property Item( _
    ByVal y
    Vertical position of the matrix element.
    As System.Int32, _
    ByVal x
    Horizontal position of the matrix element.
    As System.Int32 _
    ) As ComplexNumber
    public ComplexNumber this[
    System.Int32 y,
    System.Int32 x
    ]{ get; set; }
    public: __property ComplexNumber get_Item(
    System.Int32 y,
    System.Int32 x
    ); public: __property void set_Item(
    System.Int32 y,
    System.Int32 x,
    ComplexNumber value
    );
    public:
    property ComplexNumber default [System.Int32,System.Int32] { ComplexNumber get(System.Int32 y, System.Int32 x); void set(System.Int32 y, System.Int32 x, ComplexNumber value); }

    Parameters

    y
    Vertical position of the matrix element.
    x
    Horizontal position of the matrix element.

    Return Value

    Selected matrix element.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also