AccentOccurrences.AccentGlyphFactoryProvider.GetGlyphFactory C# (CSharp) Method

GetGlyphFactory() public method

public GetGlyphFactory ( IWpfTextView view, IWpfTextViewMargin margin ) : IGlyphFactory
view IWpfTextView
margin IWpfTextViewMargin
return IGlyphFactory
        public IGlyphFactory GetGlyphFactory(IWpfTextView view, IWpfTextViewMargin margin)
        {
            AccentGlyphFactory factory = new AccentGlyphFactory();
            factory.View = view;
            factory.FormatMapService = FormatMapService;

            return factory;
        }
AccentGlyphFactoryProvider