Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 901 Bytes

File metadata and controls

43 lines (33 loc) · 901 Bytes

TextFlip

Description

Procedure TextFlip flips newly created text vertically or horizontally. Parameter FlipType specifies the flip effect to be applied to the text.

Table - Text Flip Style

Flip Style Constant
No reflection 0
Horizontal reflection thru origin 1
Vertical reflection thru origin 2
PROCEDURE TextFlip(FlipType : INTEGER);
def vs.TextFlip(FlipType):
    return None

Parameters

Name Type Description
FlipType INTEGER Text flip setting for text.

Examples

VectorScript

TextFlip(1);
CreateText('Sample text string');

Python

Version

Availability: from All Versions

Category