Gets a value indicating whether the value of the component at
the specified index can be changed.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overrides Function IsComponentWritable ( _ index As Integer _ ) As Boolean |
| C# |
|---|
public override bool IsComponentWritable ( int index ) |
| C++ |
|---|
public: virtual bool IsComponentWritable ( int index ) override |
Parameters
- index (System.Int32)
- Zero-based index of the component.
Return Value
Always returns false.
Remarks
The components of a ConstantVector cannot
be modified. Any attempt to do so will result in
an exception of type ComponentReadOnlyException.