11 writes to CF
PresentationFramework (11)
System\Windows\Documents\RtfToXamlReader.cs (7)
1886CF = cb.CF; 2109BorderLeft.CF = value; 2110BorderTop.CF = value; 2111BorderRight.CF = value; 2112BorderBottom.CF = value; 2113BorderAll.CF = value; 10739ConverterState.CurrentBorder.CF = token.Parameter;
System\Windows\Documents\XamlToRtfWriter.cs (4)
3261cf.BorderLeft.CF = valueData; 3262cf.BorderRight.CF = valueData; 3263cf.BorderTop.CF = valueData; 3264cf.BorderBottom.CF = valueData;
14 references to CF
PresentationFramework (14)
System\Windows\Documents\RtfToXamlReader.cs (14)
1886CF = cb.CF; 1959CF < 0 ? string.Create(CultureInfo.InvariantCulture, stackalloc char[128], $"\\brdrs\\brdrw{EffectiveWidth}") : 1960string.Create(CultureInfo.InvariantCulture, stackalloc char[128], $"\\brdrs\\brdrw{EffectiveWidth}\\brdrcf{CF}"); 2105return BorderLeft.CF; 2195if (BorderLeft.CF >= 0) 2198sb.Append(BorderLeft.CF.ToString(CultureInfo.InvariantCulture)); 2202if (BorderTop.CF >= 0) 2205sb.Append(BorderTop.CF.ToString(CultureInfo.InvariantCulture)); 2209if (BorderRight.CF >= 0) 2212sb.Append(BorderRight.CF.ToString(CultureInfo.InvariantCulture)); 2216if (BorderBottom.CF >= 0) 2219sb.Append(BorderBottom.CF.ToString(CultureInfo.InvariantCulture)); 2727if (BorderLeft.CF >= 0) 2729entry = converterState.ColorTable.EntryAt((int)BorderLeft.CF);