markus / KCOM / Common / ThumbnailItem.cs @ 949d5058
이력 | 보기 | 이력해설 | 다운로드 (916 Bytes)
1 |
using IKCOM; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
|
7 |
namespace KCOM.Common |
8 |
{ |
9 |
public class ThumbnailItem |
10 |
{ |
11 |
public ThumbnailItem() |
12 |
{ |
13 |
DisplayColorItems = new List<SetColorMarkupItem>(); |
14 |
} |
15 |
|
16 |
public Uri ImageUri { get; set; } |
17 |
|
18 |
public List<SetColorMarkupItem> DisplayColorItems { get; set; } |
19 |
public int PageNumber { get; set; } |
20 |
public int Angle { get; set; } |
21 |
|
22 |
//강인구 추가 |
23 |
public double Width { get; set; } |
24 |
public double Height { get; set; } |
25 |
|
26 |
/// <summary> |
27 |
/// 페이지 경로 |
28 |
/// 2019.07.03 김태성 추가 |
29 |
/// </summary> |
30 |
public Uri PageUri { get; set; } |
31 |
} |
32 |
|
33 |
//public class SetColorMarkupItem |
34 |
//{ |
35 |
// public string markupID { get; set; } |
36 |
// public string DisplayColor { get; set; } |
37 |
//} |
38 |
} |