Multiply<TLeft,TRight,TResult>.Checked Property

Definition

Gets or sets a value that indicates whether the multiplication executes in a checked context.

public:
 property bool Checked { bool get(); void set(bool value); };
public bool Checked { get; set; }
member this.Checked : bool with get, set
Public Property Checked As Boolean

Property Value

true if the multiplication executes in a checked context; otherwise, false. The default is true.

Remarks

By default the Multiply<TLeft,TRight,TResult> activity executes in a checked context and throws an OverflowException if the multiplication causes an overflow.

Applies to