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