LEADTOOLS WPF and Silverlight (Leadtools.Windows.Media.Effects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
AspectRatio Property
See Also 
Leadtools.Windows.Media.Effects Namespace > MagnifyGlassEffect Class : AspectRatio Property



Gets or sets aspect ratio of the magnify glass. This is a dependency property. Supported in Silverlight

Syntax

Visual Basic (Declaration) 
Public Property AspectRatio As Double
Visual Basic (Usage)Copy Code
Dim instance As MagnifyGlassEffect
Dim value As Double
 
instance.AspectRatio = value
 
value = instance.AspectRatio
C# 
public double AspectRatio {get; set;}
C++/CLI 
public:
property double AspectRatio {
   double get();
   void set (    double value);
}

Property Value

The aspect ratio of the magnify glass. This value is multiplied by the Radius value to generate an elliptical magnify glass. Default value is 1.5.

Example

For XAML example, refer to MagnifyGlassEffect.

For C#/VB examples, refer to MagnifyGlassEffect.

Remarks

This effect uses the Center, Radius and AspectRatio properties to construct the magnify glass area.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also