CarouselView.FormsPlugin.Abstractions.CarouselViewControl.SetCurrentPage C# (CSharp) Method

SetCurrentPage() public method

public SetCurrentPage ( int position ) : void
position int
return void
		public void SetCurrentPage(int position){
			if(SetCurrentAction != null)
				SetCurrentAction (position);
		}
	}