Description:
Append objects to a Named Position.
Syntax:
public Boolean Append(
Guid id,
IEnumerable<Guid> objectIds
)
Guid id,
IEnumerable<Guid> objectIds
)
Parameters:
- id
- Type: System.Guid
- Guid of the Named Position which you want to append to.
- objectIds
- Type: IEnumerable<Guid>
- New object ids to be included in this Named Position.
Returns:
Type: Boolean
True or False depending on whether the Append was successful.
Available since:
6.0
Description:
Append objects to a Named Position.
Syntax:
public Boolean Append(
Guid id,
IEnumerable<RhinoObject> objects
)
Guid id,
IEnumerable<RhinoObject> objects
)
Parameters:
- id
- Type: System.Guid
- Guid of the Named Position which you want to append to.
- objects
- Type: IEnumerable<RhinoObject>
- Collection of Rhino Objects to be included in this Named Position.
Returns:
Type: Boolean
True or False depending on whether the Append was successful.
Available since:
6.0
Description:
Append objects to a Named Position.
Syntax:
public Boolean Append(
String name,
IEnumerable<Guid> objectIds
)
String name,
IEnumerable<Guid> objectIds
)
Parameters:
- name
- Type: System.String
- Name of the Named Position which you want to append to.
- objectIds
- Type: IEnumerable<Guid>
- New object Guids to be included in this Named Position.
Returns:
Type: Boolean
True or False depending on whether the Append was successful.
Available since:
6.0
Description:
Append objects to a Named Position.
Syntax:
public Boolean Append(
String name,
IEnumerable<RhinoObject> objects
)
String name,
IEnumerable<RhinoObject> objects
)
Parameters:
- name
- Type: System.String
- Name of the Named Position which you want to append to.
- objects
- Type: IEnumerable<RhinoObject>
- Collection of Rhino Objects to be included in this Named Position.
Returns:
Type: Boolean
True or False depending on whether the Append was successful.
Available since:
6.0