the image slider is a simple and elegant image carousel. You can also have captions that will be transitioned on their own depending on their alignment. You can also have indicators that show up on the bottom of the slider.
// create slider Dim slider As ABMImageSlider slider.Initialize(page, "slider", "") // add images slider.AddSlideImage("../images/slider1.jpg","This Is our big Title!", "Here's a small slogan.", ABM.SLIDER_LEFT) slider.AddSlideImage("../images/slider2.jpg","This Is our big Title!", "Here's a small slogan.", ABM.SLIDER_CENTER) slider.AddSlideImage("../images/slider3.jpg","This Is our big Title!", "Here's a small slogan.", ABM.SLIDER_RIGHT) slider.AddSlideImage("../images/slider4.jpg","This Is our big Title!", "Here's a small slogan.", ABM.SLIDER_CENTER) page.Cell(2,1).AddComponent(slider)