Leadtools.Windows.Media.Effects Send comments on this topic. | Back to Introduction - LEADTOOLS WPF | Help Version 16.5.9.25
Factor Property
See Also 
Leadtools.Windows.Media.Effects.Color Namespace > MathematicalFunctionCommandBitmapEffect Class : Factor Property





Gets or sets a value used as an amplitude factor if the Type property is Square, Square Root, or Logarithm, and is used as a frequency factor if the Type property is Sine or Cosine.

Syntax

Visual Basic (Declaration) 
Public Property Factor As Integer
Visual Basic (Usage)Copy Code
Dim instance As MathematicalFunctionCommandBitmapEffect
Dim value As Integer
 
instance.Factor = value
 
value = instance.Factor
C# 
public int Factor {get; set;}
C++/CLI 
public:
property int Factor {
   int get();
   void set (int value);
}
XAML Attributes Usage 

<object Factor =int >

Dependencies Property Information 

Identifier field

FactorProperty

Metadata properties set to true

None

XAML Attributes Usage 

<object Factor =int >

Dependencies Property Information 

Identifier field

FactorProperty

Metadata properties set to true

None

Return Value

Value used as an amplitude factor when squaring, taking the logarithm of or taking the square root of the color values and as a frequency factor when taking the sine or cosine of the color values. The value of the Factor property is divided internally by different amounts, according to the type of math operation being performed. These amounts are as follows:
if the Type property is set to:then the Factor property will be divided by:
Sqaure10000 internally
Logarithm10 internally
Square Root10 internally
Sine100 internally
Cosine100 internally


Only positive values are accepted.

Example

For XAML example, refer to MathematicalFunctionCommandBitmapEffect.

For C#/VB examples, refer to MathematicalFunctionCommandBitmapEffect.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, Windows Server 2008 family

See Also