IGH_VariableParameterComponentCanRemoveParameter Method |
This function will get called before an attempt is made to remove a parameter.
Since this method is potentially called on Canvas redraws, it must be fast.
Namespace:
Grasshopper.Kernel
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax bool CanRemoveParameter(
GH_ParameterSide side,
int index
)
Function CanRemoveParameter (
side As GH_ParameterSide,
index As Integer
) As Boolean
Parameters
- side
- Type: Grasshopper.KernelGH_ParameterSide
Parameter side. - index
- Type: SystemInt32
Removal index of parameter.
Return Value
Type:
BooleanReturn True if your component supports removing a parameter at the given location.
See Also