Wrapper to multiply a text by some scalar number.

Namespace:  Cloudster.Samples.Text
Assembly:  Cloudster.Samples.Text.Role (in Cloudster.Samples.Text.Role.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static TextEntity operator *(
	double lambda,
	TextEntity initText
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	lambda As Double, _
	initText As TextEntity _
) As TextEntity
Visual C++
public:
static TextEntity^ operator *(
	double lambda, 
	TextEntity^ initText
)

Parameters

lambda
Type: System..::.Double
Scalar number to multiply by.
initText
Type: Cloudster.Samples.Text..::.TextEntity
Initial text.

Return Value

Resulting text.

See Also