Esempio n. 1
0
        internal void Load()
        {
            Clear();
            uint count;

            unmanagedStyles.getLength(out count);
            for (int i = 0; i < count; i++)
            {
                nsIDOMStyleSheet style;
                unmanagedStyles.item((uint)i, out style);
                styles.Add(new Stylesheet(control, style));
            }
        }