Returns a value that indicates whether the value of the component at
the specified row and column can be changed.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics.SinglePrecision.Net40 (in Extreme.Numerics.SinglePrecision.Net40.dll) Version: 4.0.10170.0 (4.0.11003.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 if you can change the value of this
component; otherwise
false.
Remarks
See Also