PhpOffice\PhpPresentation\Reader\PowerPoint97::readRecordMouseOverInteractiveInfoContainer PHP Метод

readRecordMouseOverInteractiveInfoContainer() приватный Метод

A container record that specifies what actions to perform when interacting with an object by moving the mouse cursor over it.
    private function readRecordMouseOverInteractiveInfoContainer($stream, $pos)
    {
        $arrayReturn = array('length' => 0);
        $data = $this->loadRecordHeader($stream, $pos);
        if ($data['recVer'] == 0xf && $data['recInstance'] == 0x1 && $data['recType'] == self::RT_INTERACTIVEINFO) {
            // Record Header
            $arrayReturn['length'] += 8;
            // interactiveInfoAtom
            // macroNameAtom
            throw new \Exception('Feature not implemented (l.' . __LINE__ . ')');
        }
        return $arrayReturn;
    }
PowerPoint97