Beispiel #1
0
 void Merge(string name, TableItemStyles s, Style source)
 {
     if ((!CheckBit((int)s)) && (source.CheckBit((int)s)))
     {
         object o = source.ViewState [name];
         if (o != null)
         {
             ViewState [name] = o;
             SetBit((int)s);
         }
     }
 }
Beispiel #2
0
		void Merge (string name, TableItemStyles s, Style source)
		{
			if ((!CheckBit ((int) s)) && (source.CheckBit ((int) s))) {
				object o = source.ViewState [name];
				if (o != null) {
					ViewState [name] = o;
					SetBit ((int) s);
				}
			}
		}