ChartSheet.HeightPercent 屬性
取得或設定立體圖表的高度,以 Microsoft.Office.Tools.Excel.ChartSheet 寬度的百分比表示。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Property HeightPercent As Integer
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。