FieldDictionaryAdd Method (String, Point2d) |
Add a new Point2dField to the dictionary. This will be a data only
field and not show up in the content browsers.
Namespace:
Rhino.Render.Fields
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.1
Syntax public Point2dField Add(
string key,
Point2d value
)
Public Function Add (
key As String,
value As Point2d
) As Point2dField
Parameters
- key
- Type: SystemString
Key name for the field value to add. See important note above. - value
- Type: Rhino.GeometryPoint2d
Initial value for this field.
Return Value
Type:
Point2dField[Missing <returns> documentation for "M:Rhino.Render.Fields.FieldDictionary.Add(System.String,Rhino.Geometry.Point2d)"]
Exceptions Exception | Condition |
---|
ArgumentException |
An element with the same key already exists in the dictionary
|
See Also