Intersoft ClientUI Documentation
PointerPosition Property (CallOut)



Gets or sets the position of the pointer.
Syntax
<CategoryAttribute("Appearance")>
Public Property PointerPosition As Dock
Dim instance As CallOut
Dim value As Dock
 
instance.PointerPosition = value
 
value = instance.PointerPosition
[CategoryAttribute("Appearance")]
public Dock PointerPosition {get; set;}
[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>

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CallOut Class
CallOut Members

Concepts

CallOut

Send Feedback