Spread for ASP.NET 9.0 Product Documentation
AutoPlay Property
Example 


Gets or sets whether the slide show plays automatically on render.
Syntax
'Declaration
 
Public Property AutoPlay As Boolean
'Usage
 
Dim instance As SlideShowCellType
Dim value As Boolean
 
instance.AutoPlay = value
 
value = instance.AutoPlay
public bool AutoPlay {get; set;}

Property Value

Boolean: true to have the slide show play automatically; false otherwise
Example
This example creates a slide show cell type.
FarPoint.Web.Spread.Extender.SlideShowCellType ss = new FarPoint.Web.Spread.Extender.SlideShowCellType();
ss.Loop = true;
ss.PlayInterval = 1000;
ss.AutoPlay = true;
ss.SlideShowServiceMethod = "GetSlides";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = ss;
Dim ss As New FarPoint.Web.Spread.Extender.SlideShowCellType
ss.AutoPlay = True
ss.Loop = True
ss.PlayInterval = 1000
ss.SlideShowServiceMethod = "GetSlides"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = ss
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

SlideShowCellType Class
SlideShowCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.