Intersoft ClientUI Documentation
TitleVisibility Property
See Also  Send Feedback
Intersoft.Client.UI.Aqua.UXFlow Namespace > UXFlow Class : TitleVisibility Property






Gets or sets the visibility of title.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Layout Settings")>
Public Property TitleVisibility As Visibility
Visual Basic (Usage)Copy Code
Dim instance As UXFlow
Dim value As Visibility
 
instance.TitleVisibility = value
 
value = instance.TitleVisibility
C# 
[CategoryAttribute("Layout Settings")]
public Visibility TitleVisibility {get; set;}
Delphi 
public read-write property TitleVisibility: Visibility; 
JScript 
CategoryAttribute("Layout Settings")
public function get,set TitleVisibility : Visibility
Managed Extensions for C++ 
[CategoryAttribute("Layout Settings")]
public: __property Visibility get_TitleVisibility();
public: __property void set_TitleVisibility( 
   Visibility value
);
C++/CLI 
[CategoryAttribute("Layout Settings")]
public:
property Visibility TitleVisibility {
   Visibility get();
   void set (    Visibility value);
}

Remarks

There are two text elements in UXFlow, a title and a sub title element. Title element is used to display the Title text of the selected item, while sub title element is used to display the SubTitle text of the selected item. The title element is positioned on the top of sub title element; you can control the height of each element through TitleSpace and SubTitleSpace properties accordingly.

These properties are also useful to provide margin between the title element, sub title element and the control panel element. Note that you should specify enough amount of height for the text to be displayed, if your text space is smaller than the actual text size, the text may look truncated.

These text elements can also be collapsed entirely if not desired, distributing more space for the flow element. To visibility of these text elements can be customized through the TitleVisibility and SubTitleVisibility property respectively.

XAML Copy Code
<Intersoft:UXFlow x:Name="UXFlow1" Width="700" Height="300" TitleSpace="20" SubTitleSpace="30">
    <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 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.