Returns a value that indicates 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

true if you can change the value of this component; otherwise false.

Remarks

If you attempt to set a component that is read-only, an exception of type ComponentReadOnlyException is thrown. To avoid this, you can call this method before you attempt to set the component to verify that it can be changed.

See Also