blob: d0c667b346734072ad12c4c5dfbc818084155a7f (
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
|
-- File: TextStyleWithBoxCharacteristics.cdl
-- Created: Fri Dec 1 11:11:30 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class TextStyleWithBoxCharacteristics from StepVisual
inherits TextStyle from StepVisual
uses
HArray1OfBoxCharacteristicSelect from StepVisual,
BoxCharacteristicSelect from StepVisual,
HAsciiString from TCollection,
TextStyleForDefinedFont from StepVisual
is
Create returns mutable TextStyleWithBoxCharacteristics;
---Purpose: Returns a TextStyleWithBoxCharacteristics
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aCharacterAppearance : mutable TextStyleForDefinedFont from StepVisual) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aCharacterAppearance : mutable TextStyleForDefinedFont from StepVisual;
aCharacteristics : HArray1OfBoxCharacteristicSelect) is virtual;
-- Specific Methods for Field Data Access --
SetCharacteristics(me : mutable; aCharacteristics :HArray1OfBoxCharacteristicSelect );
Characteristics (me) returns HArray1OfBoxCharacteristicSelect;
CharacteristicsValue (me; num : Integer) returns BoxCharacteristicSelect;
NbCharacteristics (me) returns Integer;
fields
characteristics : HArray1OfBoxCharacteristicSelect from StepVisual;
end TextStyleWithBoxCharacteristics;
|