2 writes to Width
PresentationFramework (2)
System\Windows\Documents\RtfToXamlReader.cs (2)
2315Width = new CellWidth(); 2326Width = new CellWidth(cf.Width);
17 references to Width
PresentationFramework (17)
System\Windows\Documents\RtfToXamlReader.cs (13)
2326Width = new CellWidth(cf.Width); 2661int t = (int)Width.Type; 2664sb.Append(Width.Value.ToString(CultureInfo.InvariantCulture)); 2686Width.SetDefaults(); 3000if (cf.Width.Value == 0 && cf.IsCellXSet) 3002cf.Width.Type = WidthType.WidthTwips; 3003cf.Width.Value = (cfPrev == null) ? cf.CellX - Trleft : cf.CellX - cfPrev.CellX; 3005else if (cf.Width.Value > 0 && !cf.IsCellXSet) 3007cellx += cf.Width.Value; 3035if (cf.Width.Type == WidthType.WidthTwips) 3037nCellX += cf.Width.Value; 10586cf.Width.Value = token.Parameter; 10591cf.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);