Aurelon Open API 8.1.1
Loading...
Searching...
No Matches
AOI_Page.h
1/*
2 * AOI_Page
3 * Copyright (c) 2007-2017 Aurelon BV. All rights reserved.
4 *
5 */
6#pragma once
7
8#include "./AOI_Group.h"
9
10class AOIAPI AOI_Page
11{
12public:
13 void GetDimensions( float&, float& ) const;
14 bool ApplyBox( const char* );
15 void SetDimensions( float, float );
16 AOI_Object_LayerPtr GetFirstLayer() const;
17 AOI_ColorSpacePtr GetPageColorSpace() const;
18 void RemoveBlendingSpace();
19};
20typedef AOI_Page* AOI_PagePtr;
Page in the document.
Definition AOI_Page.h:11