Returns the class of the slide component.
let class = this.slide.cssClass;
Gets/sets the target direction
for the slide.
<igx-carousel>
<igx-slide direction="NEXT"></igx-slide>
<igx-carousel>
Gets/sets the index
of the slide inside the carousel.
<igx-carousel>
<igx-slide index="1"></igx-slide>
<igx-carousel>
Returns the role
of the slide component.
By default is set to tabpanel
Gets/sets the active
state of the slide.
<igx-carousel>
<igx-slide [active] ="false"></igx-slide>
<igx-carousel>
Two-way data binding.
<igx-carousel>
<igx-slide [(active)] ="model.isActive"></igx-slide>
<igx-carousel>
Returns a reference to the carousel element in the DOM.
let nativeElement = this.slide.nativeElement;
Returns the tabIndex
of the slide component.
let tabIndex = this.carousel.tabIndex;
A slide component that usually holds an image and/or a caption text. IgxSlideComponent is usually a child component of an IgxCarouselComponent.
Export