Spread Silverlight Documentation
ActualBorderTop Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : ActualBorderTop Property
Gets the displayed top border of a cell.
Syntax
'Declaration
 
Public ReadOnly Property ActualBorderTop As BorderLine
'Usage
 
Dim instance As Cell
Dim value As BorderLine
 
value = instance.ActualBorderTop
public BorderLine ActualBorderTop {get;}

Property Value

A BorderLine object that specifies the actual border for the cell.
Remarks
The style is composed of cell, row, column, sheet, conditional format, and alternating rows.
Example
This example gets the ActualBorderTop property.
GrapeCity.Windows.SpreadSheet.Data.Cell acell;
acell = gcSpreadSheet1.Sheets[0].Cells[0, 0];
acell.BorderBottom = new GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25));
acell.BorderTop = new GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25));
acell.BorderLeft = new GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25));
acell.BorderRight = new GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25));
listBox1.Items.Add(acell.ActualBorderBottom.ToString());
listBox1.Items.Add(acell.ActualBorderTop.ToString());
listBox1.Items.Add(acell.ActualBorderLeft.ToString());
listBox1.Items.Add(acell.ActualBorderRight.ToString());
Dim acell As GrapeCity.Windows.SpreadSheet.Data.Cell
acell = GcSpreadSheet1.Sheets(0).Cells(0, 0)
acell.BorderBottom = New GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25))
acell.BorderTop = New GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25))
acell.BorderLeft = New GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25))
acell.BorderRight = New GrapeCity.Windows.SpreadSheet.Data.BorderLine(Color.FromArgb(100, 150, 25, 25))
ListBox1.Items.Add(acell.ActualBorderBottom.ToString())
ListBox1.Items.Add(acell.ActualBorderTop.ToString())
ListBox1.Items.Add(acell.ActualBorderLeft.ToString())
ListBox1.Items.Add(acell.ActualBorderRight.ToString())
See Also

Reference

Cell Class
Cell Members