using ComPDFKitViewer;
using ComPDFKitViewer.AnnotEvent;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace PDF_Office.ViewModels.Tools.AnnotManager
{
///
/// 注释面板与外部(如注释工具)关联
///
public class AnnotTransfer
{
public bool IsAddLink = false;
public bool IsLocationLink = false;
public AnnotAttribEvent AnnotEvent { get; set; }
public List AnnotEvents = new List();
public AnnotHandlerEventArgs annot;
public List annotlists;
public bool IsTextFill { get; private set; }
public void SetIsTextFill(bool isTextFill)
{
IsTextFill = isTextFill;
}
public event EventHandler> DataChanged;
public event EventHandler> AnnotTypeChanged;
public event EventHandler