blob: 75e1359071dff217e08401ba326a12eac6687faf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
interface Pivot : Object
{
// von Basic aus nicht erreichbar, darum alles mit Export = FALSE
SID_PIVOT_RECALC [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
SID_PIVOT_KILL [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
SID_DP_FILTER [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
}
shell ScPivotShell
{
import Pivot;
}
|