Borders
Overview
Borders is a struct in Aspose.Cells FOSS for Rust.
Inherits from: Debug, Clone, PartialEq, and 3 more.
Represents borders.
This struct provides 28 methods for working with Borders objects in Rust programs.
Available methods include: bottom, bottom_mut, copy_from, diagonal, diagonal_down, diagonal_mut, diagonal_up, get_bottom, get_bottom_mut, get_diagonal, get_diagonal_down, get_diagonal_mut, and 16 additional methods.
All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.
Fields: bottom, diagonal, diagonal_down, diagonal_up, left, right, and 1 more.
Fields
| Name | Type | Access | Description |
|---|---|---|---|
left | Border | Read/Write | Gets the left. |
right | Border | Read/Write | Gets the right. |
top | Border | Read/Write | Gets the top. |
bottom | Border | Read/Write | Gets the bottom. |
diagonal | Border | Read/Write | Gets the diagonal. |
diagonal_up | bool | Read/Write | Gets the diagonal up. |
diagonal_down | bool | Read/Write | Gets the diagonal down. |
Methods
| Signature | Description |
|---|---|
new() → Self | Initializes a new instance. |
left() → &Border | Gets the left border settings. |
get_left() → &Border | Gets the left border settings. |
left_mut() → &mut Border | Gets the associated value. |
get_left_mut() → &mut Border | Gets the associated value. |
right() → &Border | Gets the right border settings. |
get_right() → &Border | Gets the right border settings. |
right_mut() → &mut Border | Gets the associated value. |
get_right_mut() → &mut Border | Gets the associated value. |
top() → &Border | Gets the top border settings. |
get_top() → &Border | Gets the top border settings. |
top_mut() → &mut Border | Gets the associated value. |
get_top_mut() → &mut Border | Gets the associated value. |
bottom() → &Border | Gets the bottom border settings. |
get_bottom() → &Border | Gets the bottom border settings. |
bottom_mut() → &mut Border | Gets the associated value. |
get_bottom_mut() → &mut Border | Gets the associated value. |
diagonal() → &Border | Gets the diagonal border settings. |
get_diagonal() → &Border | Gets the diagonal border settings. |
diagonal_mut() → &mut Border | Gets the associated value. |
get_diagonal_mut() → &mut Border | Gets the associated value. |
diagonal_up() → bool | Gets a value indicating whether diagonal up. |
get_diagonal_up() → bool | Gets a value indicating whether diagonal up. |
set_diagonal_up(value: bool) | Sets a value indicating whether diagonal up. |
diagonal_down() → bool | Gets a value indicating whether diagonal down. |
get_diagonal_down() → bool | Gets a value indicating whether diagonal down. |
set_diagonal_down(value: bool) | Sets a value indicating whether diagonal down. |
copy_from(source: &Borders) | Copies all border sides from another borders collection. |