Ejemplo n.º 1
0
		internal TablePattern (ITablePattern source, AutomationElement element, bool cached) :
			base (source, element, cached)
		{
			this.element = element;
			this.cached = cached;
			this.Source = source;
			currentInfo = new TablePatternInformation (this, false);
			if (cached)
				cachedInfo = new TablePatternInformation (this, true);
		}
Ejemplo n.º 2
0
 internal TablePattern(ITablePattern source, AutomationElement element, bool cached) :
     base(source, element, cached)
 {
     this.element = element;
     this.cached  = cached;
     this.Source  = source;
     currentInfo  = new TablePatternInformation(this, false);
     if (cached)
     {
         cachedInfo = new TablePatternInformation(this, true);
     }
 }