blob: da562b73060bc58d37b5dfe92636daccb9d9009e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
-- File: TextLiteral.cdl
-- Created: Fri Dec 1 11:11:29 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class TextLiteral from StepVisual
inherits GeometricRepresentationItem from StepGeom
uses
HAsciiString from TCollection,
Axis2Placement from StepGeom,
TextPath from StepVisual,
FontSelect from StepVisual
is
Create returns mutable TextLiteral;
---Purpose: Returns a TextLiteral
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLiteral : mutable HAsciiString from TCollection;
aPlacement : Axis2Placement from StepGeom;
aAlignment : mutable HAsciiString from TCollection;
aPath : TextPath from StepVisual;
aFont : FontSelect from StepVisual) is virtual;
-- Specific Methods for Field Data Access --
SetLiteral(me : mutable; aLiteral : mutable HAsciiString);
Literal (me) returns mutable HAsciiString;
SetPlacement(me : mutable; aPlacement : Axis2Placement);
Placement (me) returns Axis2Placement;
SetAlignment(me : mutable; aAlignment : mutable HAsciiString);
Alignment (me) returns mutable HAsciiString;
SetPath(me : mutable; aPath : TextPath);
Path (me) returns TextPath;
SetFont(me : mutable; aFont : FontSelect);
Font (me) returns FontSelect;
fields
literal : HAsciiString from TCollection;
placement : Axis2Placement from StepGeom; -- a SelectType
alignment : HAsciiString from TCollection;
path : TextPath from StepVisual; -- an Enumeration
font : FontSelect from StepVisual; -- a SelectType
end TextLiteral;
|