-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdfFilePlugin.cs
68 lines (54 loc) · 1.43 KB
/
PdfFilePlugin.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#region
using System;
using System.Runtime.InteropServices;
using Tabster.Core.Plugins;
using Tabster.Core.Types;
#endregion
namespace PdfFile
{
public class PdfFilePlugin : ITabsterPlugin
{
#region Implementation of ITabsterPluginAttributes
public string Author
{
get { return "Nate Shoffner"; }
}
public string Copyright
{
get { return "Copyright © Nate Shoffner 2016"; }
}
public string Description
{
get { return "Supports importing and exporting to/from PDF files."; }
}
public string DisplayName
{
get { return "PDFFile"; }
}
public TabsterVersion Version
{
get { return new TabsterVersion("1.0"); }
}
public Uri Website
{
get { return new Uri("http://nateshoffner.com"); }
}
public Guid Guid
{
get { return new Guid(((GuidAttribute) typeof (PdfFilePlugin).Assembly.GetCustomAttributes(typeof (GuidAttribute), true)[0]).Value); }
}
public void Activate()
{
// not implemented
}
public void Deactivate()
{
// not implemented
}
public void Initialize()
{
// not implemented
}
#endregion
}
}