11 writes to CF
PresentationFramework (11)
System\Windows\Documents\RtfToXamlReader.cs (7)
1888CF = cb.CF; 2111BorderLeft.CF = value; 2112BorderTop.CF = value; 2113BorderRight.CF = value; 2114BorderBottom.CF = value; 2115BorderAll.CF = value; 10772ConverterState.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)
1888CF = cb.CF; 1961CF < 0 ? string.Create(CultureInfo.InvariantCulture, stackalloc char[128], $"\\brdrs\\brdrw{EffectiveWidth}") : 1962string.Create(CultureInfo.InvariantCulture, stackalloc char[128], $"\\brdrs\\brdrw{EffectiveWidth}\\brdrcf{CF}"); 2107return BorderLeft.CF; 2197if (BorderLeft.CF >= 0) 2200sb.Append(BorderLeft.CF.ToString(CultureInfo.InvariantCulture)); 2204if (BorderTop.CF >= 0) 2207sb.Append(BorderTop.CF.ToString(CultureInfo.InvariantCulture)); 2211if (BorderRight.CF >= 0) 2214sb.Append(BorderRight.CF.ToString(CultureInfo.InvariantCulture)); 2218if (BorderBottom.CF >= 0) 2221sb.Append(BorderBottom.CF.ToString(CultureInfo.InvariantCulture)); 2729if (BorderLeft.CF >= 0) 2731entry = converterState.ColorTable.EntryAt((int)BorderLeft.CF);