Constructs a new attribute collection from a dictionary of items.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public RAttributeCollection(
IDictionary<string, RObject> items,
bool readOnly = true
)
Public Sub New (
items As IDictionary(Of String, RObject),
Optional readOnly As Boolean = true
)
public:
RAttributeCollection(
IDictionary<String^, RObject^>^ items,
bool readOnly = true
)
new :
items : IDictionary<string, RObject> *
?readOnly : bool
(* Defaults:
let _readOnly = defaultArg readOnly true
*)
-> RAttributeCollection
Parameters
- items
- Type: System.Collections.GenericIDictionaryString, RObject
A dictionary that maps attribute names
(Optional.) Specifies whether the collection should
be read-only. The default is .
to attribute values. - readOnly (Optional)
- Type: SystemBoolean
Reference