PowerTools SPREAD for ASP.NET 8.0J
AutoPlay プロパティ

スライドショーをレンダリング時に自動的に再生するかどうかを取得または設定します。
構文
'Declaration
 
Public Property AutoPlay As Boolean
public bool AutoPlay {get; set;}

プロパティ値

Boolean:スライドショーを自動的に再生する場合はTrue、それ以外の場合はFalse
次のサンプルコードは、スライドショーセル型を作成します。
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
参照

SlideShowCellType クラス
SlideShowCellType メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.