Spread Windows Forms 6.0 Product Documentation
Visible Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > TitleInfo Class : Visible Property


Glossary Item Box

Gets or sets whether the titleinfo is displayed.

Syntax

Visual Basic (Declaration) 
Public Property Visible As Boolean
Visual Basic (Usage)Copy Code
Dim instance As TitleInfo
Dim value As Boolean
 
instance.Visible = value
 
value = instance.Visible
C# 
public bool Visible {get; set;}

Example

This example sets the Visible property.
C#Copy Code
FarPoint.Win.Spread.TitleInfo test = new FarPoint.Win.Spread.TitleInfo();

private void Form1_Load(object sender, EventArgs e)
{
test.Text = "Testing";
test.Visible = true;
test.HorizontalAlign = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
test.BackColor = Color.Beige;
test.ForeColor = Color.Black;
test.VerticalAlign = FarPoint.Win.Spread.CellVerticalAlignment.Center;
fpSpread1.TitleInfo = test;
}

private void button1_Click(object sender, EventArgs e)
{
test.Reset();
}
Visual BasicCopy Code
Dim test As New FarPoint.Win.Spread.TitleInfo()

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
test.Text = "Testing"
test.Visible = True
test.HorizontalAlign = FarPoint.Win.Spread.CellHorizontalAlignment.Center
test.BackColor = Color.Beige
test.ForeColor = Color.Black
test.VerticalAlign = FarPoint.Win.Spread.CellVerticalAlignment.Center
FpSpread1.TitleInfo = test
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
test.Reset()
End Sub

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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.