ShadowFormat.IncrementOffsetX Method

Publisher Developer Reference

Incrementally changes the horizontal offset of the shadow by the specified distance.

Syntax

expression.IncrementOffsetX(Increment)

expression   A variable that represents a ShadowFormat object.

Parameters

Name Required/Optional Data Type Description
Increment Required Variant Specifies how far the shadow offset is to be moved horizontally. A positive value moves the shadow to the right; a negative value moves it to the left. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Office Publisher (for example, "2.5 in").

Remarks

Use the OffsetX property to set the absolute horizontal shadow offset.

Use the IncrementOffsetY method to change a shadow's vertical offset.

Example

This example moves the shadow for the third shape in the active publication to the left by 3 points.

Visual Basic for Applications
  ActiveDocument.Pages(1).Shapes(3).Shadow _
    .IncrementOffsetX Increment:=-3

See Also