AccentOccurrences.AccentGlyphFactoryProvider.GetGlyphFactory C# (CSharp) Метод

GetGlyphFactory() публичный Метод

public GetGlyphFactory ( IWpfTextView view, IWpfTextViewMargin margin ) : IGlyphFactory
view IWpfTextView
margin IWpfTextViewMargin
Результат IGlyphFactory
        public IGlyphFactory GetGlyphFactory(IWpfTextView view, IWpfTextViewMargin margin)
        {
            AccentGlyphFactory factory = new AccentGlyphFactory();
            factory.View = view;
            factory.FormatMapService = FormatMapService;

            return factory;
        }
AccentGlyphFactoryProvider