blob: d12e6e7a37858e4c0e599df135eea5909ef89fab (
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
56
57
58
59
60
61
62
63
64
65
66
67
|
//==================================================================
//
// StarCalc
//
// (C) 1994 StarDivision GmbH, Hamburg, Germany
// $Author: nn $ $Date: 2000-11-26 13:36:00 $ $Revision: 1.2 $
// $Logfile: T:/sc/sdi/app.sdv $ $Workfile: app.sdi $
//------------------------------------------------------------------
interface StarCalc : Module
[
uuid ( "AB3257C0-07D7-11CF-89CB-008029E4B0B1" )
]
{
SID_SC_EDITOPTIONS [ ExecMethod = Execute; ]
FID_AUTOCOMPLETE [ ExecMethod = Execute; StateMethod = GetState; ]
SID_DETECTIVE_AUTO [ ExecMethod = Execute; StateMethod = GetState; ]
SID_PSZ_FUNCTION [ ExecMethod = Execute; StateMethod = GetState; ]
FID_FOCUS_POSWND [ ExecMethod = Execute; ]
SID_ATTR_METRIC [ ExecMethod = Execute; StateMethod = GetState; ]
SID_AUTOSPELL_CHECK
[
ExecMethod = Execute ;
StateMethod = GetState ;
Export = FALSE;
]
SID_AUTOSPELL_MARKOFF
[
ExecMethod = Execute ;
StateMethod = GetState ;
Export = FALSE;
]
SID_ATTR_LANGUAGE
[
ExecMethod = Execute;
StateMethod = GetState;
Export = FALSE;
]
SID_ATTR_CHAR_CJK_LANGUAGE
[
ExecMethod = Execute;
StateMethod = GetState;
Export = FALSE;
]
SID_ATTR_CHAR_CTL_LANGUAGE
[
ExecMethod = Execute;
StateMethod = GetState;
Export = FALSE;
]
SID_CHOOSE_DESIGN [ ExecMethod = Execute; ]
SID_EURO_CONVERTER [ ExecMethod = Execute; ]
}
shell ScModule
{
import StarCalc[Automation];
}
|