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 offered 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#
[ObsoleteAttribute("Replaced by SetSubType2(Type type, Guid[] guids, string friendlyName).")]
void SetSubType(
	Guid[] guids,
	string friendlyName
)

Parameters

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

See Also