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