19 instantiations of BorderFormat
PresentationFramework (19)
System\Windows\Documents\RtfToXamlReader.cs (19)
1968
_emptyBorderFormat = new
BorderFormat
();
2003
BorderLeft = new
BorderFormat
();
2004
BorderTop = new
BorderFormat
();
2005
BorderRight = new
BorderFormat
();
2006
BorderBottom = new
BorderFormat
();
2007
BorderAll = new
BorderFormat
();
2013
BorderLeft = new
BorderFormat
(pb.BorderLeft);
2014
BorderTop = new
BorderFormat
(pb.BorderTop);
2015
BorderRight = new
BorderFormat
(pb.BorderRight);
2016
BorderBottom = new
BorderFormat
(pb.BorderBottom);
2017
BorderAll = new
BorderFormat
(pb.BorderAll);
2308
BorderLeft = new
BorderFormat
();
2309
BorderRight = new
BorderFormat
();
2310
BorderBottom = new
BorderFormat
();
2311
BorderTop = new
BorderFormat
();
2332
BorderLeft = new
BorderFormat
(cf.BorderLeft);
2333
BorderRight = new
BorderFormat
(cf.BorderRight);
2334
BorderBottom = new
BorderFormat
(cf.BorderBottom);
2335
BorderTop = new
BorderFormat
(cf.BorderTop);
28 references to BorderFormat
PresentationFramework (28)
System\Windows\Documents\RtfToXamlReader.cs (23)
1884
internal BorderFormat(
BorderFormat
cb)
1962
static internal
BorderFormat
EmptyBorderFormat
1996
static private
BorderFormat
_emptyBorderFormat = null;
2029
internal
BorderFormat
BorderLeft
2041
internal
BorderFormat
BorderTop
2053
internal
BorderFormat
BorderRight
2065
internal
BorderFormat
BorderBottom
2077
internal
BorderFormat
BorderAll
2238
private
BorderFormat
_bfLeft;
2239
private
BorderFormat
_bfTop;
2240
private
BorderFormat
_bfRight;
2241
private
BorderFormat
_bfBottom;
2242
private
BorderFormat
_bfAll;
2440
internal
BorderFormat
BorderTop
2452
internal
BorderFormat
BorderBottom
2464
internal
BorderFormat
BorderLeft
2476
internal
BorderFormat
BorderRight
2766
private
BorderFormat
_brdL;
2767
private
BorderFormat
_brdR;
2768
private
BorderFormat
_brdT;
2769
private
BorderFormat
_brdB;
7686
internal
BorderFormat
CurrentBorder
7720
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)