Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepVisual / StepVisual_FontSelect.cdl
CommitLineData
7fd59977 1-- File: FontSelect.cdl
2-- Created: Fri Dec 1 11:11:11 1995
3-- Author: EXPRESS->CDL V0.2 Translator
4-- Copyright: Matra-Datavision 1993
5
6
7
8class FontSelect from StepVisual inherits SelectType from StepData
9
10 -- <FontSelect> is an EXPRESS Select Type construct translation.
11 -- it gathers : PreDefinedTextFont, ExternallyDefinedTextFont
12
13uses
14
15 PreDefinedTextFont,
16 ExternallyDefinedTextFont
17is
18
19 Create returns FontSelect;
20 ---Purpose : Returns a FontSelect SelectType
21
22 CaseNum (me; ent : Transient) returns Integer;
23 ---Purpose: Recognizes a FontSelect Kind Entity that is :
24 -- 1 -> PreDefinedTextFont
25 -- 2 -> ExternallyDefinedTextFont
26 -- 0 else
27
28 PreDefinedTextFont (me) returns any PreDefinedTextFont;
29 ---Purpose : returns Value as a PreDefinedTextFont (Null if another type)
30
31 ExternallyDefinedTextFont (me) returns any ExternallyDefinedTextFont;
32 ---Purpose : returns Value as a ExternallyDefinedTextFont (Null if another type)
33
34
35end FontSelect;
36