Ejemplo n.º 1
0
        public void Init(IHostV30 host, string config)
        {
            this.host = host;

            // if no css in config, default to hardcoded defaults
            if (String.IsNullOrEmpty(config))
            {
                host.SetProviderConfiguration(this, defaultCss);
                config = defaultCss;
            }
            this.cssFromConfig = config;
        }