ChartSheet.HeightPercent 属性

获取或设置三维图表的高度(以 Microsoft.Office.Tools.Excel.ChartSheet 宽度的百分比形式表示)。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)

语法

声明
Property HeightPercent As Integer
    Get
    Set
int HeightPercent { get; set; }

属性值

类型:System.Int32
三维图表的高度,以 Microsoft.Office.Tools.Excel.ChartSheet 宽度的百分比形式(介于 5% 到 500% 之间)表示。

示例

下面的代码示例使用 HeightPercent 属性将当前 Microsoft.Office.Tools.Excel.ChartSheet 的高度设置为 Microsoft.Office.Tools.Excel.ChartSheet 宽度的 50%。

Private Sub AdjustHeight()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DBarClustered
    Me.HeightPercent = 50
End Sub
private void AdjustHeight()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DBarClustered; 
    this.HeightPercent = 50;
}

.NET Framework 安全性

请参见

参考

ChartSheet 接口

Microsoft.Office.Tools.Excel 命名空间