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






Gets or sets the sub title space.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Layout Settings")>
Public Property SubTitleSpace As Double
Visual Basic (Usage)Copy Code
Dim instance As UXFlow
Dim value As Double
 
instance.SubTitleSpace = value
 
value = instance.SubTitleSpace
C# 
[CategoryAttribute("Layout Settings")]
public double SubTitleSpace {get; set;}
Delphi 
public read-write property SubTitleSpace: Double; 
JScript 
CategoryAttribute("Layout Settings")
public function get,set SubTitleSpace : double
Managed Extensions for C++ 
[CategoryAttribute("Layout Settings")]
public: __property double get_SubTitleSpace();
public: __property void set_SubTitleSpace( 
   double value
);
C++/CLI 
[CategoryAttribute("Layout Settings")]
public:
property double SubTitleSpace {
   double get();
   void set (    double 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.