19 instantiations of BorderFormat
PresentationFramework (19)
System\Windows\Documents\RtfToXamlReader.cs (19)
1970
_emptyBorderFormat = new
BorderFormat
();
2005
BorderLeft = new
BorderFormat
();
2006
BorderTop = new
BorderFormat
();
2007
BorderRight = new
BorderFormat
();
2008
BorderBottom = new
BorderFormat
();
2009
BorderAll = new
BorderFormat
();
2015
BorderLeft = new
BorderFormat
(pb.BorderLeft);
2016
BorderTop = new
BorderFormat
(pb.BorderTop);
2017
BorderRight = new
BorderFormat
(pb.BorderRight);
2018
BorderBottom = new
BorderFormat
(pb.BorderBottom);
2019
BorderAll = new
BorderFormat
(pb.BorderAll);
2310
BorderLeft = new
BorderFormat
();
2311
BorderRight = new
BorderFormat
();
2312
BorderBottom = new
BorderFormat
();
2313
BorderTop = new
BorderFormat
();
2334
BorderLeft = new
BorderFormat
(cf.BorderLeft);
2335
BorderRight = new
BorderFormat
(cf.BorderRight);
2336
BorderBottom = new
BorderFormat
(cf.BorderBottom);
2337
BorderTop = new
BorderFormat
(cf.BorderTop);
28 references to BorderFormat
PresentationFramework (28)
System\Windows\Documents\RtfToXamlReader.cs (23)
1886
internal BorderFormat(
BorderFormat
cb)
1964
static internal
BorderFormat
EmptyBorderFormat
1998
static private
BorderFormat
_emptyBorderFormat = null;
2031
internal
BorderFormat
BorderLeft
2043
internal
BorderFormat
BorderTop
2055
internal
BorderFormat
BorderRight
2067
internal
BorderFormat
BorderBottom
2079
internal
BorderFormat
BorderAll
2240
private
BorderFormat
_bfLeft;
2241
private
BorderFormat
_bfTop;
2242
private
BorderFormat
_bfRight;
2243
private
BorderFormat
_bfBottom;
2244
private
BorderFormat
_bfAll;
2442
internal
BorderFormat
BorderTop
2454
internal
BorderFormat
BorderBottom
2466
internal
BorderFormat
BorderLeft
2478
internal
BorderFormat
BorderRight
2768
private
BorderFormat
_brdL;
2769
private
BorderFormat
_brdR;
2770
private
BorderFormat
_brdT;
2771
private
BorderFormat
_brdB;
7704
internal
BorderFormat
CurrentBorder
7738
private
BorderFormat
_border;
System\Windows\Documents\XamlToRtfWriter.cs (5)
1573
WriteBorder("\\clbrdrt",
BorderFormat
.EmptyBorderFormat);
1574
WriteBorder("\\clbrdrl",
BorderFormat
.EmptyBorderFormat);
1575
WriteBorder("\\clbrdrb",
BorderFormat
.EmptyBorderFormat);
1576
WriteBorder("\\clbrdrr",
BorderFormat
.EmptyBorderFormat);
1737
private void WriteBorder(string borderControlWord,
BorderFormat
bf)