var table = project.Lists ["Fonts"];
int res = 0;
var fonts = instance.GetFonts ();
string name = "";
if (fonts! = null)
{
res = fonts.Count ();
table.AddRange (fonts.ToList ());
}
int rnd_sum_font = new Random (). Next (7, 15);
for (int i = 0; i <rnd_sum_font; i ++)
{
int rnd = new Random (). Next (0, table.Count);
instance.HideFont (table.ElementAt (rnd));
}
instance.ActiveTab.Close ();
When I use this code in 7.2.0.0 and set chrome based browser, why the information show me" You should enable dedicate process."? And the snippet doesn't works. Would you please explain for me? And is there any fonts setting snippet for chrome?