コード例 #1
0
ファイル: ScrollPattern.cs プロジェクト: mono/uia2atk
		internal ScrollPattern (IScrollPattern source, AutomationElement element, bool cached)
		{
			this.element = element;
			this.cached = cached;
			this.Source = source;
			currentInfo = new ScrollPatternInformation (this, false);
			if (cached)
				cachedInfo = new ScrollPatternInformation (this, true);
		}
コード例 #2
0
ファイル: UiaScrollPattern.cs プロジェクト: apetrovskiy/STUPS
 public ScrollPatternInformation(IScrollPattern scrollPattern, bool useCache)
 {
     _scrollPattern = scrollPattern;
     _useCache = useCache;
 }