property Panel.WordWrap as Boolean
Specifies whether the text is word wrapping in the panel.

TypeDescription
Boolean A Boolean expression that specifies whether the panel's caption is shown using multiple lines or single line.
By default, the WordWrap property is True. If the WordWrap property is True, the panel's Text is wrapped in the panel.

The following VB sample shows "How can I display the panel using a single line":

With StatusBar1
	.BeginUpdate 
	.Debug = True
	.VisualAppearance.Add 4,"c:\exontrol\images\border.ebn"
	.VisualAppearance.Add 5,"CP:4 1 1 -1 -1"
	.BackColorPanels = 83886080
	.BackColor = -2147483633
	.Format = "1/2/(3,4)"
	With .Panel(3)
		.Text = "Arrange the panels as you want using CRD strings"
		.ToolTipText = .Text
		.WordWrap = False
	End With
	.EndUpdate 
End With
The following VB.NET sample shows "How can I display the panel using a single line":
With AxStatusBar1
	.BeginUpdate 
	.Debug = True
	.VisualAppearance.Add 4,"c:\exontrol\images\border.ebn"
	.VisualAppearance.Add 5,"CP:4 1 1 -1 -1"
	.GetOcx().BackColorPanels = &H5000000
	.GetOcx().BackColor = &H8000000f
	.Format = "1/2/(3,4)"
	With .get_Panel(3)
		.Text = "Arrange the panels as you want using CRD strings"
		.ToolTipText = .Text
		.WordWrap = False
	End With
	.EndUpdate 
End With
The following C++ sample shows "How can I display the panel using a single line":
/*
	Copy and paste the following directives to your header file as
	it defines the namespace 'EXSTATUSBARLib' for the library: 'ExStatusBar 1.0 Control Library'

	#import "C:\\WINNT\\system32\\ExStatusBar.dll"
	using namespace EXSTATUSBARLib;
*/
EXSTATUSBARLib::IStatusBarPtr spStatusBar1 = GetDlgItem(IDC_STATUSBAR1)->GetControlUnknown();
spStatusBar1->BeginUpdate();
spStatusBar1->PutDebug(VARIANT_TRUE);
spStatusBar1->GetVisualAppearance()->Add(4,"c:\\exontrol\\images\\border.ebn");
spStatusBar1->GetVisualAppearance()->Add(5,"CP:4 1 1 -1 -1");
spStatusBar1->PutBackColorPanels(83886080);
spStatusBar1->PutBackColor(-2147483633);
spStatusBar1->PutFormat(L"1/2/(3,4)");
EXSTATUSBARLib::IPanelPtr var_Panel = spStatusBar1->GetPanel(long(3));
	var_Panel->PutText(L"Arrange the panels as you want using CRD strings");
	var_Panel->PutToolTipText(var_Panel->GetText());
	var_Panel->PutWordWrap(VARIANT_FALSE);
spStatusBar1->EndUpdate();
The following C# sample shows "How can I display the panel using a single line":
axStatusBar1.BeginUpdate();
axStatusBar1.Debug = true;
axStatusBar1.VisualAppearance.Add(4,"c:\\exontrol\\images\\border.ebn");
axStatusBar1.VisualAppearance.Add(5,"CP:4 1 1 -1 -1");
(axStatusBar1.GetOcx() as EXSTATUSBARLib.StatusBar).BackColorPanels = 0x5000000;
(axStatusBar1.GetOcx() as EXSTATUSBARLib.StatusBar).BackColor = 0x8000000f;
axStatusBar1.Format = "1/2/(3,4)";
EXSTATUSBARLib.Panel var_Panel = axStatusBar1.get_Panel(3);
	var_Panel.Text = "Arrange the panels as you want using CRD strings";
	var_Panel.ToolTipText = var_Panel.Text;
	var_Panel.WordWrap = false;
axStatusBar1.EndUpdate();
The following VFP sample shows "How can I display the panel using a single line":
with thisform.StatusBar1
	.BeginUpdate
	.Debug = .T.
	.VisualAppearance.Add(4,"c:\exontrol\images\border.ebn")
	.VisualAppearance.Add(5,"CP:4 1 1 -1 -1")
	.BackColorPanels = 83886080
	.BackColor = -2147483633
	.Format = "1/2/(3,4)"
	with .Panel(3)
		.Text = "Arrange the panels as you want using CRD strings"
		.ToolTipText = .Text
		.WordWrap = .F.
	endwith
	.EndUpdate
endwith