Version 24.2 (latest)

RightBorderColor Property

Gets or sets the right border color.
Syntax
public Nullable<Color> RightBorderColor {get; set;}

Property Value

The right border color.
Remarks

If the border color is set to a non-default value and the RightBorderStyle is set to Default, it will be resolved to Thin.

Example
The following snippet demonstrates how to control the formatting of GroupByRecords when exported.

Dim groupFormatSettings As New FormatSettings() 
groupFormatSettings.BorderStyle = Infragistics.Excel.CellBorderLineStyle.Double
groupFormatSettings.BottomBorderColor = Colors.Red 
groupFormatSettings.FontStrikeout = Infragistics.Excel.ExcelDefaultableBoolean.True
groupFormatSettings.FontStyle = FontStyles.Italic 
groupFormatSettings.FontUnderlineStyle = Infragistics.Excel.FontUnderlineStyle.Double
groupFormatSettings.LeftBorderColor = Colors.Green 
groupFormatSettings.RightBorderColor = Colors.Blue 
groupFormatSettings.TopBorderColor = Colors.Purple 
groupFormatSettings.VerticalAlignment = Infragistics.Excel.VerticalCellAlignment.Center 

DataPresenterExcelExporter.SetExcelGroupFormatSettings(Me.Grid.FieldSettings, groupFormatSettings)
'Declaration
 
Public Property RightBorderColor As Nullable(Of Color)
 
FormatSettings groupFormatSettings = new FormatSettings();
groupFormatSettings.BorderStyle = Infragistics.Excel.CellBorderLineStyle.Double;
groupFormatSettings.BottomBorderColor = Colors.Red;
groupFormatSettings.FontStrikeout = Infragistics.Excel.ExcelDefaultableBoolean.True;
groupFormatSettings.FontStyle = FontStyles.Italic;
groupFormatSettings.FontUnderlineStyle = Infragistics.Excel.FontUnderlineStyle.Double;
groupFormatSettings.LeftBorderColor = Colors.Green;
groupFormatSettings.RightBorderColor = Colors.Blue;
groupFormatSettings.TopBorderColor = Colors.Purple;
groupFormatSettings.VerticalAlignment = Infragistics.Excel.VerticalCellAlignment.Center;

DataPresenterExcelExporter.SetExcelGroupFormatSettings(this.Grid.FieldSettings, groupFormatSettings);
'Declaration
 
Public Property RightBorderColor As Nullable(Of Color)
 
<igDP:XamDataGrid.FieldSettings>
    
<igDP:FieldSettings>
        
<igExcelExporter:DataPresenterExcelExporter.ExcelGroupFormatSettings>
            
<igExcelExporter:FormatSettings 
                
BorderStyle="Double"
                
BottomBorderColor="Red"
                
FontStrikeout="True"
                
FontStyle="Italic"
                
FontUnderlineStyle="Double"
                
LeftBorderColor="Green"
                
RightBorderColor="Blue"
                
TopBorderColor="Purple"
                
VerticalAlignment="Center" />            
        
</igExcelExporter:DataPresenterExcelExporter.ExcelGroupFormatSettings>
    
</igDP:FieldSettings>            
</igDP:XamDataGrid.FieldSettings>
'Declaration
 
Public Property RightBorderColor As Nullable(Of Color)
 
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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