Raise Property

Microsoft Publisher Visual Basic

expression.Raise

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

Numeric set values are in points; strings can be any measurement unit supported by Microsoft Publisher. Return values are always in points.

Example

The following example places the phonetic guide for shape one in the active publication five points above the base text.

Dim phoGuide As PhoneticGuide

Set phoGuide = ActiveDocument.Pages(1).Shapes(1) _
    .TextFrame.TextRange.Fields(1).PhoneticGuide

With phoGuide
    .Raise = 5
End With