Skip to content

Files

Latest commit

 

History

History
42 lines (27 loc) · 742 Bytes

Excel.Chart.Resize.md

File metadata and controls

42 lines (27 loc) · 742 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.Resize event (Excel)
vbaxl10.chm500075
vbaxl10.chm500075
Excel.Chart.Resize
d1b7d0bb-d190-18f2-83f9-b91b637d80aa
04/16/2019
medium

Chart.Resize event (Excel)

Occurs when the chart is resized.

Syntax

expression.Resize

expression A variable that returns a Chart object.

Example

The following code example keeps the upper-left corner of the chart at the same location when the chart is resized.

Private Sub myChartClass_Resize() 
 With ActiveChart.Parent 
 .Left = 100 
 .Top = 150 
 End With 
End Sub

[!includeSupport and feedback]