![]() |
AIPlacedTypes.hGo to the documentation of this file.00001 /************************************************************************* 00002 * ADOBE CONFIDENTIAL 00003 * ___________________ 00004 * 00005 * Copyright 2018 Adobe Systems Incorporated 00006 * All Rights Reserved. 00007 * 00008 * NOTICE: All information contained herein is, and remains 00009 * the property of Adobe Systems Incorporated and its suppliers, 00010 * if any. The intellectual and technical concepts contained 00011 * herein are proprietary to Adobe Systems Incorporated and its 00012 * suppliers and are protected by all applicable intellectual property 00013 * laws, including trade secret and copyright laws. 00014 * Dissemination of this information or reproduction of this material 00015 * is strictly forbidden unless prior written permission is obtained 00016 * from Adobe Systems Incorporated. 00017 **************************************************************************/ 00018 00019 #pragma once 00020 #ifndef __AIPlacedTypes__ 00021 #define __AIPlacedTypes__ 00022 00023 namespace ai{ 00026 enum PlaceMethod { 00028 kAsIs, 00030 kFill, 00032 kFit, 00034 kConform, 00037 kReconform 00038 }; 00039 00042 enum PlaceAlignment { 00043 kTopLeft, 00044 kMidLeft, 00045 kBotLeft, 00046 00047 kTopMid, 00048 kMidMid, 00049 kBotMid, 00050 00051 kTopRight, 00052 kMidRight, 00053 kBotRight 00054 }; 00055 } 00056 #endif |
||||||
|
![]() |
|