Partager via


ChartSheetBase.HeightPercent, propriété

Obtient ou définit la hauteur d'un graphique 3D en tant que pourcentage de la largeur de Microsoft.Office.Tools.Excel.ChartSheetBase.

Espace de noms :  Microsoft.Office.Tools.Excel
Assembly :  Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntaxe

'Déclaration
Public Property HeightPercent As Integer
public int HeightPercent { get; set; }

Valeur de propriété

Type : System.Int32
Hauteur d'un graphique 3D en tant que pourcentage de la largeur de Microsoft.Office.Tools.Excel.ChartSheetBase (entre 5 et 500 pour cent)

Exemples

L'exemple de code suivant utilise la propriété HeightPercent pour définir une hauteur du Microsoft.Office.Tools.Excel.ChartSheetBase représentant 50 pour cent de la largeur de Microsoft.Office.Tools.Excel.ChartSheetBase.

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;
}

Sécurité .NET Framework

Voir aussi

Référence

ChartSheetBase Classe

Microsoft.Office.Tools.Excel, espace de noms