Changed Rtf to virtual so that vlnParagraph could override the derived property
This commit is contained in:
parent
8261a6bb55
commit
aa6050a955
@ -71,11 +71,11 @@ namespace Volian.Print.Library
|
||||
get { return _ImageText; }
|
||||
set { _ImageText = value; }
|
||||
}
|
||||
private string _Rtf; // may become iTextSharp paragraph
|
||||
public string Rtf
|
||||
protected string _Rtf; // may become iTextSharp paragraph
|
||||
public virtual string Rtf
|
||||
{
|
||||
get { return _Rtf; }
|
||||
set { _Rtf = value; }
|
||||
set { _Rtf = value; }
|
||||
}
|
||||
iTextSharp.text.Paragraph _IParagraph;
|
||||
public iTextSharp.text.Paragraph IParagraph
|
||||
|
Loading…
x
Reference in New Issue
Block a user