Spread Silverlight Documentation
ActualBorderRight Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : ActualBorderRight Property
Gets the displayed right cell border.
Syntax
'Declaration
 
Public ReadOnly Property ActualBorderRight As BorderLine
'Usage
 
Dim instance As Cell
Dim value As BorderLine
 
value = instance.ActualBorderRight
public BorderLine ActualBorderRight {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 ActualBorderRight 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