ChartSheet.DepthPercent プロパティ
3-D グラフの奥行きを、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 DepthPercent As Integer
int DepthPercent { get; set; }
プロパティ値
型 : System.Int32
3-D グラフの奥行きを Microsoft.Office.Tools.Excel.ChartSheet の幅に対する割合で表した値 (20 ~ 2000%) です。
例
次のコード例は、DepthPercent プロパティを使用して、現在の Microsoft.Office.Tools.Excel.ChartSheet の 3-D 部分の奥行きを、Microsoft.Office.Tools.Excel.ChartSheet の幅の 75% に設定します。
Private Sub AdjustDepth()
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.DepthPercent = 75
End Sub
private void AdjustDepth()
{
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.DepthPercent = 75;
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。