Description:

Append objects to a Named Position.

Syntax:
public bool Append(
string name,
IEnumerable<Guid> objectIds
)
Parameters:
  • name
  • Type: 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: bool
True or False depending on whether the Append was successful.
Available since:
6.0

Description:

Append objects to a Named Position.

Syntax:
public bool Append(
string name,
IEnumerable<RhinoObject> objects
)
Parameters:
  • name
  • Type: 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: bool
True or False depending on whether the Append was successful.
Available since:
6.0

Description:

Append objects to a Named Position.

Syntax:
public bool Append(
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: bool
True or False depending on whether the Append was successful.
Available since:
6.0

Description:

Append objects to a Named Position.

Syntax:
public bool Append(
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: bool
True or False depending on whether the Append was successful.
Available since:
6.0

Nothing found