internal static new void DropInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
 public static new Style Instance(DocGrid grid)
 {
     return(instance ?? (instance = new DBDocumentStyle(grid)));
 }