RenderContent.GetChildSlotParameter Method

RenderContentGetChildSlotParameter Method

Extra requirements are a way of specifying extra functionality on parameters in the automatic UI. Implement this function to specify additional functionality for automatic UI sections or the texture summary. See IAutoUIExtraRequirements.h in the C++ RDK for string definitions for the parameter names.

Namespace:  Rhino.Render
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.7
Syntax
public virtual Object GetChildSlotParameter(
	string parameterName,
	string childSlotName
)
Public Overridable Function GetChildSlotParameter ( 
	parameterName As String,
	childSlotName As String
) As Object

Parameters

parameterName
Type: SystemString
The parameter or field internal name to which this query applies
childSlotName
Type: SystemString
The extra requirement parameter, as listed in IAutoUIExtraRequirements.h in the C++ RDK

Return Value

Type: Object
Call the base class if you do not support the extra requirement parameter. Current supported return values are (int, bool, float, double, string, Guid, Color, Vector3d, Point3d, DateTime)
See Also