Files
core/ASCOfficePDFWriter/PdfWriterLib/Annotation.h
Elen.Subbotina 2276da418e правки под Linux после исправлений под iOs . BOOL -> bool (TRUE->true, FALSE->false)
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62078 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:57:10 +03:00

18 lines
1.1 KiB
C

#ifndef _ANNOTATION_H
#define _ANNOTATION_H
#pragma once
#include "Objects.h"
Annotation LinkAnnotNew (MMgr oMMgr, Xref pXref, TRect oRect, Destination pDst);
Annotation TextAnnotNew (MMgr oMMgr, Xref pXref, TRect oRect, const char *sText, EncoderRecPtr pEncoder);
Annotation URILinkAnnotNew (MMgr oMMgr, Xref pXref, TRect oRect, const char *sUri);
//------ Внешние функции --------------------------------------------------------------------------
unsigned long AnnotationSetBorderStyle (Annotation pAnnot, BSSubtype eSubtype, float fWidth, unsigned short nDashOn, unsigned short nDashOff, unsigned short nDashPhase);
unsigned long LinkAnnotSetBorderStyle (Annotation pAnnot, float fWidth, unsigned short nDashOn, unsigned short nDashOff );
unsigned long LinkAnnotSetHighlightMode (Annotation pAnnot, AnnotHighlightMode eMode);
unsigned long TextAnnotSetIcon (Annotation pAnnot, AnnotIcon eIcon);
unsigned long TextAnnotSetOpened (Annotation pAnnot, bool bOpened);
#endif /* _ANNOTATION_H */