2 writes to Width
PresentationFramework (2)
System\Windows\Documents\RtfToXamlReader.cs (2)
2313Width = new CellWidth(); 2324Width = new CellWidth(cf.Width);
17 references to Width
PresentationFramework (17)
System\Windows\Documents\RtfToXamlReader.cs (13)
2324Width = new CellWidth(cf.Width); 2659int t = (int)Width.Type; 2662sb.Append(Width.Value.ToString(CultureInfo.InvariantCulture)); 2684Width.SetDefaults(); 2998if (cf.Width.Value == 0 && cf.IsCellXSet) 3000cf.Width.Type = WidthType.WidthTwips; 3001cf.Width.Value = (cfPrev == null) ? cf.CellX - Trleft : cf.CellX - cfPrev.CellX; 3003else if (cf.Width.Value > 0 && !cf.IsCellXSet) 3005cellx += cf.Width.Value; 3033if (cf.Width.Type == WidthType.WidthTwips) 3035nCellX += cf.Width.Value; 10553cf.Width.Value = token.Parameter; 10558cf.Width.Type = (WidthType)token.Parameter;
System\Windows\Documents\XamlToRtfWriter.cs (4)
1627cfSpanned.Width.Value += cf.Width.Value; 3081cf.Width.Type = WidthType.WidthTwips; 3082cf.Width.Value = Converters.PxToTwipRounded(d);