개정판 036650a0
issue #999: Add serialize method to all of controls
Change-Id: I74e404885e8cd107b48ad1921e768137ed14a3da
MarkupToPDF/Common/CommentUserInfo.cs | ||
---|---|---|
1 |
using System; |
|
1 |
using MarkupToPDF.Controls.Common; |
|
2 |
using System; |
|
2 | 3 |
using System.Collections.Generic; |
3 | 4 |
using System.Linq; |
4 | 5 |
using System.Text; |
... | ... | |
59 | 60 |
// StateChanged(this, new MyEventArgs { isMouseOver = true }); |
60 | 61 |
//} |
61 | 62 |
} |
63 |
|
|
64 |
/// <summary> |
|
65 |
/// subclass has to override this property |
|
66 |
/// </summary> |
|
67 |
virtual public ControlType ControlType { get; set; } |
|
68 |
|
|
69 |
/// <summary> |
|
70 |
/// subclass has to override this method |
|
71 |
/// </summary> |
|
72 |
/// <returns>serialized string</returns> |
|
73 |
public virtual string Serialize() { return string.Empty; } |
|
62 | 74 |
} |
63 | 75 |
} |
64 | 76 |
|
내보내기 Unified diff