GetText Method
Declaration Description Parameters Method Result See Also Example

<< Click to Display Table of Contents >>

Navigation:  Additional Resources > OLE/COM Automation > Methods > Edit >

GetText Method
Declaration Description Parameters Method Result See Also Example

Previous pageReturn to chapter overviewNext page

 

Section

Declaration

 

procedure GetText(

const Name: WideString;

out FontName: WideString;

out FontSize: Integer;

out FontColor, FontStyle: WideString;

out Border: Integer;

out Text: WideString

);

Section

Description

Gets the Text and Text Style for the specified Text Device

Section

Parameters

 

Input Parameter

Usage

Name

Text Device name

Output Parameter

Usage

FontName

Font Name used for the text

FontSize

Font Size used for the text

FontColor

Font Colour used for the text

FontStyle

Font Style used for the text

Border

1 - Text is surrounded by a Border, otherwise not

Text

Text in the Text box.

Section

Method Result

None.

Section

Example

PowaMasterObj.GetText( Name, FontName, FontSize, FontColor, FontStyle, Border, Text);

Section

See Also

SetText

Section