11 writes to CF
PresentationFramework (11)
System\Windows\Documents\RtfToXamlReader.cs (7)
1887CF = cb.CF; 2110BorderLeft.CF = value; 2111BorderTop.CF = value; 2112BorderRight.CF = value; 2113BorderBottom.CF = value; 2114BorderAll.CF = value; 10741ConverterState.CurrentBorder.CF = token.Parameter;
System\Windows\Documents\XamlToRtfWriter.cs (4)
3262cf.BorderLeft.CF = valueData; 3263cf.BorderRight.CF = valueData; 3264cf.BorderTop.CF = valueData; 3265cf.BorderBottom.CF = valueData;
14 references to CF
PresentationFramework (14)
System\Windows\Documents\RtfToXamlReader.cs (14)
1887CF = cb.CF; 1960CF < 0 ? string.Create(CultureInfo.InvariantCulture, stackalloc char[128], $"\\brdrs\\brdrw{EffectiveWidth}") : 1961string.Create(CultureInfo.InvariantCulture, stackalloc char[128], $"\\brdrs\\brdrw{EffectiveWidth}\\brdrcf{CF}"); 2106return BorderLeft.CF; 2196if (BorderLeft.CF >= 0) 2199sb.Append(BorderLeft.CF.ToString(CultureInfo.InvariantCulture)); 2203if (BorderTop.CF >= 0) 2206sb.Append(BorderTop.CF.ToString(CultureInfo.InvariantCulture)); 2210if (BorderRight.CF >= 0) 2213sb.Append(BorderRight.CF.ToString(CultureInfo.InvariantCulture)); 2217if (BorderBottom.CF >= 0) 2220sb.Append(BorderBottom.CF.ToString(CultureInfo.InvariantCulture)); 2728if (BorderLeft.CF >= 0) 2730entry = converterState.ColorTable.EntryAt((int)BorderLeft.CF);