Raise Property

       

Returns a Variant indicating the distance between the top of the base text and the bottom of the guide text. Read-only.

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