19 instantiations of BorderFormat
PresentationFramework (19)
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (19)
2011
_emptyBorderFormat = new
BorderFormat
();
2046
BorderLeft = new
BorderFormat
();
2047
BorderTop = new
BorderFormat
();
2048
BorderRight = new
BorderFormat
();
2049
BorderBottom = new
BorderFormat
();
2050
BorderAll = new
BorderFormat
();
2056
BorderLeft = new
BorderFormat
(pb.BorderLeft);
2057
BorderTop = new
BorderFormat
(pb.BorderTop);
2058
BorderRight = new
BorderFormat
(pb.BorderRight);
2059
BorderBottom = new
BorderFormat
(pb.BorderBottom);
2060
BorderAll = new
BorderFormat
(pb.BorderAll);
2353
BorderLeft = new
BorderFormat
();
2354
BorderRight = new
BorderFormat
();
2355
BorderBottom = new
BorderFormat
();
2356
BorderTop = new
BorderFormat
();
2377
BorderLeft = new
BorderFormat
(cf.BorderLeft);
2378
BorderRight = new
BorderFormat
(cf.BorderRight);
2379
BorderBottom = new
BorderFormat
(cf.BorderBottom);
2380
BorderTop = new
BorderFormat
(cf.BorderTop);
28 references to BorderFormat
PresentationFramework (28)
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (23)
1907
internal BorderFormat(
BorderFormat
cb)
2005
static internal
BorderFormat
EmptyBorderFormat
2039
static private
BorderFormat
_emptyBorderFormat = null;
2072
internal
BorderFormat
BorderLeft
2084
internal
BorderFormat
BorderTop
2096
internal
BorderFormat
BorderRight
2108
internal
BorderFormat
BorderBottom
2120
internal
BorderFormat
BorderAll
2283
private
BorderFormat
_bfLeft;
2284
private
BorderFormat
_bfTop;
2285
private
BorderFormat
_bfRight;
2286
private
BorderFormat
_bfBottom;
2287
private
BorderFormat
_bfAll;
2485
internal
BorderFormat
BorderTop
2497
internal
BorderFormat
BorderBottom
2509
internal
BorderFormat
BorderLeft
2521
internal
BorderFormat
BorderRight
2826
private
BorderFormat
_brdL;
2827
private
BorderFormat
_brdR;
2828
private
BorderFormat
_brdT;
2829
private
BorderFormat
_brdB;
7769
internal
BorderFormat
CurrentBorder
7803
private
BorderFormat
_border;
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (5)
1576
WriteBorder("\\clbrdrt",
BorderFormat
.EmptyBorderFormat);
1577
WriteBorder("\\clbrdrl",
BorderFormat
.EmptyBorderFormat);
1578
WriteBorder("\\clbrdrb",
BorderFormat
.EmptyBorderFormat);
1579
WriteBorder("\\clbrdrr",
BorderFormat
.EmptyBorderFormat);
1740
private void WriteBorder(string borderControlWord,
BorderFormat
bf)