Intersoft ClientUI Documentation
PointerPosition Property
See Also  Send Feedback
Intersoft.Client.UI.Controls Namespace > CallOut Class : PointerPosition Property






Gets or sets the position of the pointer.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Appearance")>
Public Property PointerPosition As Dock
Visual Basic (Usage)Copy Code
Dim instance As CallOut
Dim value As Dock
 
instance.PointerPosition = value
 
value = instance.PointerPosition
C# 
[CategoryAttribute("Appearance")]
public Dock PointerPosition {get; set;}
Delphi 
public read-write property PointerPosition: Dock; 
JScript 
CategoryAttribute("Appearance")
public function get,set PointerPosition : Dock
Managed Extensions for C++ 
[CategoryAttribute("Appearance")]
public: __property Dock get_PointerPosition();
public: __property void set_PointerPosition( 
   Dock value
);
C++/CLI 
[CategoryAttribute("Appearance")]
public:
property Dock PointerPosition {
   Dock get();
   void set (    Dock value);
}

Remarks

One of the most unique features in CallOut control is the ability to easily customize the pointer shape.

PointerPosition determines the position of your pointer. You can choose Top, Left, Right, or Bottom.

XAML Copy Code
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"
    Orientation="Horizontal">
    <Intersoft:CallOut Margin="4" Width="128" Height="128"/>
    <Intersoft:CallOut Margin="4" Width="128" Height="128"
        PointerPosition="Left"/>
    <Intersoft:CallOut Margin="4" Width="128" Height="128" 
        PointerPosition="Top"/>
    <Intersoft:CallOut Margin="4" Width="128" Height="128"
        PointerPosition="Right"/>
</StackPanel>

The pointer can be positioned at four places (Top,Left,Right,Bottom).

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.