OCC22322 Improvement of Extrema performance
[occt.git] / src / StepVisual / StepVisual_TextStyle.cdl
CommitLineData
7fd59977 1-- File: TextStyle.cdl
2-- Created: Fri Dec 1 11:11:30 1995
3-- Author: EXPRESS->CDL V0.2 Translator
4-- Copyright: Matra-Datavision 1993
5
6
7class TextStyle from StepVisual
8
9inherits TShared from MMgt
10
11uses
12
13 HAsciiString from TCollection,
14 TextStyleForDefinedFont from StepVisual
15is
16
17 Create returns mutable TextStyle;
18 ---Purpose: Returns a TextStyle
19
20 Init (me : mutable;
21 aName : mutable HAsciiString from TCollection;
22 aCharacterAppearance : mutable TextStyleForDefinedFont from StepVisual) is virtual;
23
24 -- Specific Methods for Field Data Access --
25
26 SetName(me : mutable; aName : mutable HAsciiString);
27 Name (me) returns mutable HAsciiString;
28 SetCharacterAppearance(me : mutable; aCharacterAppearance : mutable TextStyleForDefinedFont);
29 CharacterAppearance (me) returns mutable TextStyleForDefinedFont;
30
31fields
32
33 name : HAsciiString from TCollection;
34 characterAppearance : TextStyleForDefinedFont from StepVisual;
35
36end TextStyle;