2 writes to Width
PresentationFramework (2)
System\Windows\Documents\RtfToXamlReader.cs (2)
2314Width = new CellWidth(); 2325Width = new CellWidth(cf.Width);
17 references to Width
PresentationFramework (17)
System\Windows\Documents\RtfToXamlReader.cs (13)
2325Width = new CellWidth(cf.Width); 2660int t = (int)Width.Type; 2663sb.Append(Width.Value.ToString(CultureInfo.InvariantCulture)); 2685Width.SetDefaults(); 2999if (cf.Width.Value == 0 && cf.IsCellXSet) 3001cf.Width.Type = WidthType.WidthTwips; 3002cf.Width.Value = (cfPrev == null) ? cf.CellX - Trleft : cf.CellX - cfPrev.CellX; 3004else if (cf.Width.Value > 0 && !cf.IsCellXSet) 3006cellx += cf.Width.Value; 3034if (cf.Width.Type == WidthType.WidthTwips) 3036nCellX += cf.Width.Value; 10555cf.Width.Value = token.Parameter; 10560cf.Width.Type = (WidthType)token.Parameter;
System\Windows\Documents\XamlToRtfWriter.cs (4)
1628cfSpanned.Width.Value += cf.Width.Value; 3082cf.Width.Type = WidthType.WidthTwips; 3083cf.Width.Value = Converters.PxToTwipRounded(d);