Sample.IndexedViewController.CreateSizingSource C# (CSharp) Method

CreateSizingSource() public method

public CreateSizingSource ( bool unevenRows ) : Source
unevenRows bool
return Source
		public override Source CreateSizingSource (bool unevenRows)
	    {
			if (unevenRows)
				return new SizingIndexedSource (this);
			else
	        	return new IndexedSource (this);
	    }
	}