UIDragScrollView.FindScrollView C# (CSharp) Method

FindScrollView() private method

private FindScrollView ( ) : void
return void
	private void FindScrollView()
	{
		UIScrollView y = NGUITools.FindInParents<UIScrollView>(this.mTrans);
		if (this.scrollView == null)
		{
			this.scrollView = y;
			this.mAutoFind = true;
		}
		else if (this.scrollView == y)
		{
			this.mAutoFind = true;
		}
		this.mScroll = this.scrollView;
	}