Used to set the SubType of a node pin, which is a more detailed specification of the node type via a set of Guids that identifiy the interfaces accepted on this pin. The SubType is used by the GUI to guide the user to make only links between pins that understand the same interfaces. Should only be called once immediately after the pin has been created in IPlugin.SetPluginHost.

Namespace: VVVV.PluginInterfaces.V1
Assembly: VVVV.PluginInterfaces (in VVVV.PluginInterfaces.dll) Version: 2.0.4694.10872

Syntax

C#
void SetSubType2(
	Type type,
	Guid[] guids,
	string friendlyName
)

Parameters

type
Type: System..::..Type
The Pins Type.
guids
Type: array<System..::..Guid>[]()[][]
An array of Guids (typically only one) that specifies the interfaces that this input accepts.
friendlyName
Type: System..::..String
A user readable name specifying the type of the node connection.

See Also