Note: This API is now obsolete.
Returns a value that indicates whether the value of the element at
the specified row and column can be changed.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use IsElementWritable instead.")]
public bool IsComponentWritable(
int row,
int column
)
<ObsoleteAttribute("Use IsElementWritable instead.")>
Public Function IsComponentWritable (
row As Integer,
column As Integer
) As Boolean
public:
[ObsoleteAttribute(L"Use IsElementWritable instead.")]
bool IsComponentWritable(
int row,
int column
)
[<ObsoleteAttribute("Use IsElementWritable 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
element; otherwise
.
If you attempt to set a element 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 element to verify that it can be changed.
Reference