Please, consider the following MWE:
\documentclass[border=3mm]{standalone}
\usepackage{xcolor}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{hlines, vlines,
cell{1}{2-4} = {bg=gray9}
}
1 & Beta & Gamma & Delta \
2 & Beta & Gamma & Delta \
3 & \SetCell[c=2]{bg=red8}
Beta & Gamma & Delta \
\end{tblr}
\end{document}
which produce
Question:
does exist settings for \SetCell (used in the third row) equivalent to cell{3}{2-3} = {bg=red8} used in tblr options? I like to get the same result with use of one \SetCell.


\SetCelllocks the indicesiandjto whereever the command is called. Maybe\SetRowaccepts an optional argument to specify only certain columns? – marv Jan 18 '22 at 08:32<span>argument of\SetCells(orcells). It doesn't make sense to set e.g.c=2for every cell. Also using this option e.g. withcells=[c=2]{bg=red8}produces an error for me. Reading the code, the optional argument of\SetCells(orcells) is just passed to every cell. I guess this works in principle, but it is not sensible to set the<span>parameterscandrglobally for every cell. – marv Jan 18 '22 at 09:09