19 instantiations of BorderFormat
PresentationFramework (19)
System\Windows\Documents\RtfToXamlReader.cs (19)
1969
_emptyBorderFormat = new
BorderFormat
();
2004
BorderLeft = new
BorderFormat
();
2005
BorderTop = new
BorderFormat
();
2006
BorderRight = new
BorderFormat
();
2007
BorderBottom = new
BorderFormat
();
2008
BorderAll = new
BorderFormat
();
2014
BorderLeft = new
BorderFormat
(pb.BorderLeft);
2015
BorderTop = new
BorderFormat
(pb.BorderTop);
2016
BorderRight = new
BorderFormat
(pb.BorderRight);
2017
BorderBottom = new
BorderFormat
(pb.BorderBottom);
2018
BorderAll = new
BorderFormat
(pb.BorderAll);
2309
BorderLeft = new
BorderFormat
();
2310
BorderRight = new
BorderFormat
();
2311
BorderBottom = new
BorderFormat
();
2312
BorderTop = new
BorderFormat
();
2333
BorderLeft = new
BorderFormat
(cf.BorderLeft);
2334
BorderRight = new
BorderFormat
(cf.BorderRight);
2335
BorderBottom = new
BorderFormat
(cf.BorderBottom);
2336
BorderTop = new
BorderFormat
(cf.BorderTop);
28 references to BorderFormat
PresentationFramework (28)
System\Windows\Documents\RtfToXamlReader.cs (23)
1885
internal BorderFormat(
BorderFormat
cb)
1963
static internal
BorderFormat
EmptyBorderFormat
1997
static private
BorderFormat
_emptyBorderFormat = null;
2030
internal
BorderFormat
BorderLeft
2042
internal
BorderFormat
BorderTop
2054
internal
BorderFormat
BorderRight
2066
internal
BorderFormat
BorderBottom
2078
internal
BorderFormat
BorderAll
2239
private
BorderFormat
_bfLeft;
2240
private
BorderFormat
_bfTop;
2241
private
BorderFormat
_bfRight;
2242
private
BorderFormat
_bfBottom;
2243
private
BorderFormat
_bfAll;
2441
internal
BorderFormat
BorderTop
2453
internal
BorderFormat
BorderBottom
2465
internal
BorderFormat
BorderLeft
2477
internal
BorderFormat
BorderRight
2767
private
BorderFormat
_brdL;
2768
private
BorderFormat
_brdR;
2769
private
BorderFormat
_brdT;
2770
private
BorderFormat
_brdB;
7687
internal
BorderFormat
CurrentBorder
7721
private
BorderFormat
_border;
System\Windows\Documents\XamlToRtfWriter.cs (5)
1574
WriteBorder("\\clbrdrt",
BorderFormat
.EmptyBorderFormat);
1575
WriteBorder("\\clbrdrl",
BorderFormat
.EmptyBorderFormat);
1576
WriteBorder("\\clbrdrb",
BorderFormat
.EmptyBorderFormat);
1577
WriteBorder("\\clbrdrr",
BorderFormat
.EmptyBorderFormat);
1738
private void WriteBorder(string borderControlWord,
BorderFormat
bf)