Skip to content

Commit e2b8433

Browse files
github-actions[bot]KB Bot
and
KB Bot
authored
Added new kb article spreadsheet-how-to-set-bottom-border (#642)
Co-authored-by: KB Bot <[email protected]>
1 parent 8f3d215 commit e2b8433

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
title: Setting a Bottom Border on a Cell in RadSpreadsheet for ASP.NET AJAX
3+
description: Learn how to apply a bottom border style to a cell in RadSpreadsheet for ASP.NET AJAX using the Telerik.Web.Spreadsheet.BorderStyle.
4+
type: how-to
5+
page_title: How to Apply a Bottom Border to a Cell in RadSpreadsheet for ASP.NET AJAX
6+
slug: spreadsheet-how-to-set-bottom-border
7+
tags: radspreadsheet, aspnet-ajax, border, cell, styling
8+
res_type: kb
9+
ticketid: 1673328
10+
---
11+
12+
## Environment
13+
14+
<table>
15+
<tbody>
16+
<tr>
17+
<td>Product</td>
18+
<td>RadSpreadsheet for ASP.NET AJAX</td>
19+
</tr>
20+
<tr>
21+
<td>Version</td>
22+
<td>all</td>
23+
</tr>
24+
</tbody>
25+
</table>
26+
27+
## Description
28+
When working with RadSpreadsheet for ASP.NET AJAX, it might be necessary to visually distinguish certain cells by applying a border. Specifically, using a bottom border for a cell can help emphasize or separate content. This knowledge base article demonstrates how to set a bottom border on a cell within the RadSpreadsheet component.
29+
30+
This knowledge-base article also answers the following questions:
31+
- How do I style a cell in RadSpreadsheet with a border?
32+
- Can I apply a custom border color and size to a cell in RadSpreadsheet?
33+
- What is the recommended way to add a bottom border to a cell in ASP.NET AJAX RadSpreadsheet?
34+
35+
## Solution
36+
To set the bottom border of a cell in the RadSpreadsheet, utilize the `BorderBottom` property. This property accepts an instance of `Telerik.Web.Spreadsheet.BorderStyle`, which allows specifying the border's color and size.
37+
38+
Here is a step-by-step guide on how to implement this:
39+
40+
1. Define a new instance of `Telerik.Web.Spreadsheet.BorderStyle`.
41+
2. Set the desired `Color` and `Size` for the border.
42+
3. Assign this border style to the `BorderBottom` property of the target cell.
43+
44+
Below is an illustrative example:
45+
46+
```csharp
47+
Cell firstCell = new Cell() { Index = 0, Value = "Select Date:", Bold = true };
48+
row.AddCell(firstCell);
49+
var borderStyle = new Telerik.Web.Spreadsheet.BorderStyle()
50+
{
51+
Color = "black",
52+
Size = 2
53+
};
54+
// if the BorderTop is null, which is the default value
55+
firstCell.BorderTop = borderStyle;
56+
firstCell.BorderRight = borderStyle;
57+
firstCell.BorderBottom = borderStyle;
58+
firstCell.BorderLeft = borderStyle;
59+
```
60+
61+
**Key Points:**
62+
- `BorderBottom`: Specifies the style for the bottom border of the cell.
63+
- `Telerik.Web.Spreadsheet.BorderStyle`: Enables customization of the border by setting its `Color` and `Size`.
64+
65+
By following these steps, you can easily add a bottom border to any cell in your RadSpreadsheet, enhancing the visual appeal and clarity of your spreadsheet data.
66+
67+
## See Also
68+
- [RadSpreadsheet Documentation](https://docs.telerik.com/devtools/aspnet-ajax/controls/spreadsheet/overview)
69+
- [RadSpreadsheet Server-Side Programming](https://docs.telerik.com/devtools/aspnet-ajax/controls/spreadsheet/server-side-programming/overview)

0 commit comments

Comments
 (0)