blob: 3a5103e9292996cfc0bbabcf040e5d3494583e5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; ]
}
shell ScPivotShell
{
import Pivot;
}
|