RenderContentCreate Method (RhinoDoc, Type, RenderContent, String) |
Constructs a new content of the specified type and attaches it to a document.
This function cannot be used to create temporary content that you delete after use.
Content created by this function is owned by RDK and appears in the content editor.
To create a temporary content which is owned by you, call RenderContentType.NewContentFromTypeId().
Namespace:
Rhino.Render
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 7.9
Syntax public static RenderContent Create(
RhinoDoc doc,
Type type,
RenderContent parent,
string childSlotName
)
Public Shared Function Create (
doc As RhinoDoc,
type As Type,
parent As RenderContent,
childSlotName As String
) As RenderContent
Parameters
- doc
- Type: RhinoRhinoDoc
The Rhino document to attach the new render content to. - type
- Type: SystemType
The type of the content to create. - parent
- Type: Rhino.RenderRenderContent
The parent content. If not null, this must be an RDK-owned content that is
attached to the document (either top-level or child). The new content then becomes its child.
If null, the new content is added to the top-level document content list instead. - childSlotName
- Type: SystemString
ChildSlotName is the unique child identifier to use for the new content when creating it as a child of parent (i.e., when parent is not null)
Return Value
Type:
RenderContentA new document-resident render content.
See Also