主题
Orientation (属性)
返回或设置一个 Any 值,它代表文本方向。
说明
此属性值可设为 -90 到 90 度之间的整数值或以下常量之一:
xlDownward |
---|
xlHorizontal |
xlUpward |
xlVertical |
示例
python
#本示例显示图表工作表 Chart1 中数值轴上的单位标签文本方向的度数
def test():
displayUnitLabel = Application.Charts.Item("Chart1").ChartObjects(1).Chart.Axes(xlValue).DisplayUnitLabel
print(displayUnitLabel.Orientation)
python
#下例将 Sheet1 上的第一个图表数值轴上的单位标签文本方向设置成向下排列
def test():
displayUnitLabel = Application.Worksheets.Item("Sheet1").ChartObjects(1).Chart.Axes(xlValue).DisplayUnitLabel
displayUnitLabel.Orientation = xlDownward