In LaTeX the fancyhdr package provides the lhead, chead and rhead macros that allow me to create the left, center and right parts of the header. These macros also enable me to treat each part of the header as a column. For example the following MWE:
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{\textbf{A\\ B}}
\chead{\textbf{C\\ D}}
\rhead{\textbf{E}}
\begin{document}
Some Text
\end{document}
Produces the following document:

Notice how A and B are stacked on top of each other.
How can I achieve this in ConTeXt?
