ICreate.Controls.Bars Send comments on this topic.
FooterText Property
See Also 
ICreate.Controls.Bars Namespace > CollapsingGroupPanel Class : FooterText Property






Gets or sets the text displayed on the footer of the CollapsingGroupPanel.

Syntax

Visual Basic (Declaration) 
Public Property FooterText As String
Visual Basic (Usage)Copy Code
Dim instance As CollapsingGroupPanel
Dim value As String
 
instance.FooterText = value
 
value = instance.FooterText
C# 
public string FooterText {get; set;}
Delphi 
public read-write property FooterText: String; 
JScript 
public function get,set FooterText : String
Managed Extensions for C++ 
public: __property string* get_FooterText();
public: __property void set_FooterText( 
   string* value
);
C++/CLI 
public:
property String^ FooterText {
   String^ get();
   void set (String^ value);
}

Return Value

A System.String value, this property specifies the text displayed on the footer of the CollapsingGroupPanel. The default value is the empty string.

Remarks

The FooterFont property specifies the Font of the text on the footer. The FooterForeColor property specifies the colour of text on the footer. The FooterTextAlign property specifies the horizontal position of the text on the CollapsingGroupPanel footer.Te 

If FooterTextCollapsed is not the empty string and ShowFooterWhenCollapsed is true, then the footer is displayed when the CollapsingGroupPanel is collapsed and FooterTextCollapsed, not FooterText, is drawn on the footer. If FooterTextCollapsed is the empty string then FooterText will be displayed.

If the CollapsingGroupPanel is expanded and its active child control has its TextOnFooterText provided property set to some value other than the empty string then this text, not FooterText, is displayed on the CollapsingGroupPanel footer.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also