markus / MarkupToPDF / Controls / Common / IPath.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (504 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
using System.Windows; |
7 |
using System.Windows.Media; |
8 |
|
9 |
namespace MarkupToPDF.Controls.Common |
10 |
{ |
11 |
public interface IPath : IMarkupCommonData |
12 |
{ |
13 |
List<Point> PointSet { get; set; } |
14 |
|
15 |
Double LineSize { get; set; } |
16 |
|
17 |
Geometry PathData { get; set; } |
18 |
|
19 |
double Width { get; set; } |
20 |
|
21 |
double Height { get; set; } |
22 |
|
23 |
string UserID { get; set; } |
24 |
} |
25 |
} |