我需要将桌子顺时针旋转 90 度。它是 FlowDocument 的块之一。有没有办法对表格应用某种旋转?
像这样创建 TextEffect 的可能解决方案:
var table = new Table();
... // fill the table here
var effect = new TextEffect
{
Transform = new RotationTransform(90),
PositionStart = 0,
PositionCount = int.MaxValue
};
table.TextEffects = new TextEffectCollection();
table.TextEffects.Add(effect);
不起作用。