ShapeRange.ScaleWidth Method
Scales the width of the shapes in the range by a specified factor.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Sub ScaleWidth ( _
Factor As Single, _
RelativeToOriginalSize As MsoTriState, _
fScale As MsoScaleFrom _
)
'Usage
Dim instance As ShapeRange
Dim Factor As Single
Dim RelativeToOriginalSize As MsoTriState
Dim fScale As MsoScaleFrom
instance.ScaleWidth(Factor, RelativeToOriginalSize, _
fScale)
void ScaleWidth(
float Factor,
MsoTriState RelativeToOriginalSize,
MsoScaleFrom fScale
)
Parameters
- Factor
Type: System.Single
Specifies the ratio between the width of the shapes after you resize them and the current or original width. For example, to make all the shapes in the range 50 percent larger, specify 1.5 for this parameter.
- RelativeToOriginalSize
Type: Microsoft.Office.Core.MsoTriState
Specifies whether shapes are scaled relative to their current or original size.
- fScale
Type: Microsoft.Office.Core.MsoScaleFrom
The parts of the shapes that retain their positions when the shapes are scaled.
Remarks
For pictures and OLE objects, you can indicate whether you want to scale the shapes relative to the original size or relative to the current size. Shapes other than pictures and OLE objects are always scaled relative to their current width.
The RelativeToOriginalSize parameter value can be one of the following MsoTriState constants. You can specify msoTrue for this parameter only if the specified shapes are pictures or OLE objects.
Constant |
Description |
---|---|
Scales the shape relative to its current size. |
|
Scales the shape relative to its original size. |
The fScale parameter value can be one of the following MsoScaleFrom constants. The default is msoScaleFromTopLeft.