Takes the max slice count of the input spreads, multiplies it with the slice count of the outer spread and assigns it to the output spread.

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

Syntax

C#
public static void SetSliceCountBy<T>(
	this ISpread<T> outputSpread,
	ISpread<ISpread<T>> inputSpreads
)

Parameters

outputSpread
Type: VVVV.PluginInterfaces.V2..::..ISpread<(Of <(<'T>)>)>
The spread to set the slice count on.
inputSpreads
Type: VVVV.PluginInterfaces.V2..::..ISpread<(Of <(<'ISpread<(Of <(<'T>)>)>>)>)>
The spread of spreads to use for the slice count computation.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:VVVV.PluginInterfaces.V2.SpreadExtensions.SetSliceCountBy``1(VVVV.PluginInterfaces.V2.ISpread{``0},VVVV.PluginInterfaces.V2.ISpread{VVVV.PluginInterfaces.V2.ISpread{``0}})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ISpread<(Of <(<'T>)>)>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also