2 instantiations of Glyphs
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4835bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.Glyphs(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1302case KnownElements.Glyphs: o = new System.Windows.Documents.Glyphs(); break;
72 references to Glyphs
PresentationFramework (72)
src\Framework\System\Windows\Documents\FixedDocument.cs (1)
526if (element is Glyphs || element is Image || (p != null && p.Fill is ImageBrush))
src\Framework\System\Windows\Documents\FixedDSBuilder.cs (1)
245if (fen.uiElement is Glyphs || fen.uiElement is Path ||
src\Framework\System\Windows\Documents\FixedHighlight.cs (4)
115Glyphs g = _element as Glyphs; 202internal Glyphs Glyphs 204get { return _element as Glyphs; }
src\Framework\System\Windows\Documents\FixedPage.cs (2)
898internal Glyphs GetGlyphsElement(FixedNode node) 900return GetElement(node) as Glyphs;
src\Framework\System\Windows\Documents\FixedSOMElement.cs (3)
79if (uiElement is Glyphs) 81Glyphs glyphs = uiElement as Glyphs;
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (4)
253if (obj is Glyphs) 255_ProcessGlyphsElement(obj as Glyphs, node); 410private void _ProcessGlyphsElement(Glyphs glyphs, FixedNode node) 519private void _CreateTextRun(Rect boundingRect, GeneralTransform trans, Glyphs glyphs, FixedNode node, int startIndex, int endIndex)
src\Framework\System\Windows\Documents\FixedSOMTextRun.cs (1)
101public static FixedSOMTextRun Create(Rect boundingRect, GeneralTransform transform, Glyphs glyphs, FixedNode fixedNode, int startIndex, int endIndex, bool allowReverseGlyphs)
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (11)
278internal Glyphs GetGlyphsElement(FixedNode node) 858private GlyphComparison _CompareGlyphs(Glyphs glyph1, Glyphs glyph2) 986(elements.Current is Glyphs && (elements.Current as Glyphs).MeasurementGlyphRun != null)) 1318if (e is Glyphs) 1320GlyphRun run = ((Glyphs)e).ToGlyphRun(); 1517Glyphs currentRunGlyph = _builder.GetGlyphsElement(lastRun.FixedNode); 1518Glyphs glyphs = _builder.GetGlyphsElement(run.FixedNode); 1678Glyphs glyphs = _builder.GetGlyphsElement(run.FixedNode); 1830private Glyphs _lastGlyphs;
src\Framework\System\Windows\Documents\FixedTextContainer.cs (2)
460Glyphs g = o as Glyphs;
src\Framework\System\Windows\Documents\FixedTextView.cs (21)
105Glyphs g = e as Glyphs; 215if (element is Glyphs) 217Glyphs g = (Glyphs)element; 292Glyphs g = fh.Glyphs; 460if (element is Glyphs) 462Glyphs g = (Glyphs)element; 531if (element is Glyphs) 533Glyphs g = (Glyphs)element; 622if (element is Glyphs) 624lastIndex = ((Glyphs)element).UnicodeString.Length; 809private void _GlyphRunHitTest(Glyphs g, double xoffset, out int charIndex, out LogicalDirection edge) 843Glyphs closestGlyphs = null; 848Glyphs startGlyphs = this.FixedPage.GetGlyphsElement(node); 924Glyphs hitGlyphs = null; 931Glyphs g = page.GetGlyphsElement(node); 1005internal static Rect _GetGlyphRunDesignRect(Glyphs g, int charStart, int charEnd) 1204private ITextPointer _CreateTextPointerFromGlyphs(Glyphs g, Point point)
src\Framework\System\Windows\Documents\Glyphs.cs (14)
730((Glyphs)d)._glyphRunProperties = null; 737((Glyphs)d)._measurementGlyphRun = null; 747typeof(Glyphs), 774DependencyProperty.Register( "Indices", typeof(string), typeof(Glyphs), 798DependencyProperty.Register( "UnicodeString", typeof(string), typeof(Glyphs), 821DependencyProperty.Register( "CaretStops", typeof(string), typeof(Glyphs), 843DependencyProperty.Register( "FontRenderingEmSize", typeof(double), typeof(Glyphs), 866DependencyProperty.Register( "OriginX", typeof(double), typeof(Glyphs), 889DependencyProperty.Register( "OriginY", typeof(double), typeof(Glyphs), 912DependencyProperty.Register( "FontUri", typeof(Uri), typeof(Glyphs), 934DependencyProperty.Register( "StyleSimulations", typeof(StyleSimulations), typeof(Glyphs), 956DependencyProperty.Register( "IsSideways", typeof(bool), typeof(Glyphs), 980DependencyProperty.Register( "BidiLevel", typeof(int), typeof(Glyphs), 1003DependencyProperty.Register("DeviceFontName", typeof(string), typeof(Glyphs),
src\Framework\System\Windows\Documents\HighlightVisual.cs (2)
218Glyphs g = fh.Glyphs; 295Glyphs g = fh.Glyphs;
src\Framework\System\Windows\Documents\Hyperlink.cs (1)
949if (fe != null && ((fe is Path) || (fe is Canvas) || (fe is Glyphs) || (fe is FixedPage)))
src\Framework\System\Windows\Documents\RubberbandSelector.cs (2)
382Glyphs g = _page.GetGlyphsElement(node); 444private bool IntersectGlyphs(Glyphs g, double top, double left, double bottom, double right, out int begin, out int end, out bool includeEnd, out double baseline, out double height)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
342case 250: t = () => typeof(Glyphs); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4833typeof(System.Windows.Documents.Glyphs),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5794case KnownElements.Glyphs: t = typeof(System.Windows.Documents.Glyphs); break;