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

InsertPage() public method

public InsertPage ( object item, int position = -1 ) : System.Threading.Tasks.Task
item object
position int
return System.Threading.Tasks.Task
		public async Task InsertPage(object item, int position = -1){
			if(InsertAction != null)
				InsertAction (item, position);
		}