Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

22a24c60 3b94 7eee 88f4 cd401edb52eb

haplokuon edited this page May 6, 2023 · 1 revision

Item Property

netDxf 3.0.0 Library

Gets or sets the component at the given row and column index in the matrix.

Definition

Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public double this[
	int row,
	int column
] { get; set; }

VB

Public Default Property Item ( 
	row As Integer,
	column As Integer
) As Double
	Get
	Set

C++

public:
property double default[int row, int column] {
	double get (int row, int column);
	void set (int row, int column, double value);
}

F#

member Item : float with get, set

Parameters

  Int32
The row index of the matrix.
  Int32
The column index of the matrix.

Return Value

Double
The component at the given row and column index in the matrix.

See Also

Reference

Matrix3 Structure
netDxf Namespace

Clone this wiki locally