Packages

Pure Elixir library for reading and editing existing .xlsx / .xlsm files with round-trip fidelity — no Rust, no Python, no NIFs.

Current section

Files

Jump to
ex_v_ex lib ex_v_ex style border.ex
Raw

lib/ex_v_ex/style/border.ex

defmodule ExVEx.Style.Border do
@moduledoc "The four sides of a cell border as `%ExVEx.Style.Side{}` records."
alias ExVEx.Style.Side
defstruct top: %Side{}, bottom: %Side{}, left: %Side{}, right: %Side{}
@type t :: %__MODULE__{
top: Side.t(),
bottom: Side.t(),
left: Side.t(),
right: Side.t()
}
end