Note: This API is now obsolete.
Returns whether the value of the component at
the specified row and column can be changed.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
[ObsoleteAttribute("Use the IsElementWritable method instead.")]
public bool IsComponentWritable(
int row,
int column
)
<ObsoleteAttribute("Use the IsElementWritable method instead.")>
Public Function IsComponentWritable (
row As Integer,
column As Integer
) As Boolean
public:
[ObsoleteAttribute(L"Use the IsElementWritable method instead.")]
bool IsComponentWritable(
int row,
int column
)
[<ObsoleteAttribute("Use the IsElementWritable method instead.")>]
member IsComponentWritable :
row : int *
column : int -> bool
Parameters
- row
- Type: SystemInt32
The zero-based row index of
the element to get or set. - column
- Type: SystemInt32
The zero-based column index of
the element to get or set.
Return Value
Type:
Boolean if you can change the value of this
component; otherwise
.
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.
Numerical Libraries
Supported in: 4.x
Obsolete (compiler warning) in 5.x
Reference