Intersoft ClientUI Documentation
MaximumPreview Property (UXFlow)



Gets or sets the maximum preview item on the left and the right side of UXFlow.
Syntax
<CategoryAttribute("Common Properties")>
Public Property MaximumPreview As Integer
Dim instance As UXFlow
Dim value As Integer
 
instance.MaximumPreview = value
 
value = instance.MaximumPreview
[CategoryAttribute("Common Properties")]
public int MaximumPreview {get; set;}
[CategoryAttribute("Common Properties")]
public:
property int MaximumPreview {
   int get();
   void set (    int value);
}
Remarks

MaximumPreview is used to determine the number of item in the left and right hand side of the focused item. The default value is -1 which means there is no limitation of preview item. It is a good idea to set this value to certain acceptable number based on your application layout to improve performance.

XAML
Copy Code
<Intersoft:UXFlow x:Name="UXFlow1" Width="700" Height="300" MaximumPreview="3">
    <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