Intersoft ClientUI Documentation
StartUpPosition Property



Gets or sets the start up position, this will flow the cover into specific position.
Syntax
<CategoryAttribute("Common Properties")>
Public Property StartUpPosition As StartPosition
Dim instance As UXFlow
Dim value As StartPosition
 
instance.StartUpPosition = value
 
value = instance.StartUpPosition
[CategoryAttribute("Common Properties")]
public StartPosition StartUpPosition {get; set;}
[CategoryAttribute("Common Properties")]
public:
property StartPosition StartUpPosition {
   StartPosition get();
   void set (    StartPosition value);
}
Remarks

StartUpPosition determines the initial position to be selected when the page is first loaded. There are four types of startup position:

In Center mode, the UXFlow flows to the item which is in the center against total items in the collection. The First mode flows the item to the first item, while the Last mode flows the item to the last item.

The following example shows how to use the startup position feature.

XAML
Copy Code
<Intersoft:UXFlow x:Name="UXFlow1" Width="700" Height="300" StartUpPosition="First">
    <Intersoft:UXFlowItem ImageSource="le-meurice.jpg" Title="Hôtel Le Meurice" SubTitle="Paris, opposite Tuileries Garden."/>
    <Intersoft:UXFlowItem ImageSource="altira-macau.jpg" Title="Altira Macau" SubTitle="Taipa Island, Macau."/>
    
    ...
</Intersoft:UXFlow>

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

UXFlow Class
UXFlow Members

Concepts

UXFlow

Send Feedback