GetName Method

Build 1501 on 14/Nov/2017  This topic last edited on: 10/Oct/2016, at 13:12

Description

Returns the tag name of the style associated with the object. Empty string if there is no associated style (e.g. the object has been just created.

Syntax

object.GetName [=strName]

object

Required. Object name, returned by Text.GetTextStyle and GetParaStyle.

strName

Required. Tag name of the style

Example

  Public Overridable Sub EditResizeHeadDecr()

    Dim objStyle = Text.GetParaStyle

    If objStyle.GetName = "" Then

      objStyle.SetName("head3")

      objStyle.SetPar(0, Units.ToVal("36pt"))

      Text.SetParaStyle(objStyle)

    End If

    HeadSize(objStyle, 1004, -1, 2000, 96000)

    objStyle.Dispose()

  End Sub