Returns a value that indicates whether the value of the component at
the specified row and column can be changed.
Namespace: Extreme.Mathematics.LinearAlgebra.Complex
Assembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 4.2.11333.0 (4.2.12253.0)
Syntax
| C# |
public override bool IsComponentWritable(
int row,
int column
)
|
| Visual Basic (Declaration) |
Public Overrides Function IsComponentWritable ( _
row As Integer, _
column As Integer _
) As Boolean
|
| Visual C++ |
public:
virtual bool IsComponentWritable(
int row,
int column
) override
|
| F# |
abstract IsComponentWritable :
row:int *
column:int -> bool
override IsComponentWritable :
row:int *
column:int -> bool
|
Parameters
-
row
- Type: System..::..Int32
The zero-based row index of
the element to get or set.
-
column
- Type: System..::..Int32
The zero-based column index of
the element to get or set.
Return Value
true
True
true
true (True in Visual Basic) if you can change the value of this
component; otherwise
falseFalsefalsefalse (False in Visual Basic).
Remarks
See Also