blob: f9995730a8aa969e564aa4f75e4ec17830c7814c (
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
|
//==================================================================
//
// StarCalc
//
// (C) 1994 StarDivision GmbH, Hamburg, Germany
// $Author: os $ $Date: 2001-03-28 13:25:25 $ $Revision: 1.3 $
// $Logfile: T:/sc/sdi/app.sdv $ $Workfile: app.sdi $
//------------------------------------------------------------------
interface StarCalc : Module
[
uuid ( "AB3257C0-07D7-11CF-89CB-008029E4B0B1" )
]
{
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];
}
|