Spread for ASP.NET 7.0 Product Documentation
SlideShowServiceMethod Property
See Also  Example Support Options
FarPoint.Web.Spread.Extender Assembly > FarPoint.Web.Spread.Extender Namespace > SlideShowCellType Class : SlideShowServiceMethod Property


Glossary Item Box

Gets or sets the Web service method that is called to supply images for the slide show cell.

Syntax

Visual Basic (Declaration) 
Public Property SlideShowServiceMethod As String
Visual Basic (Usage)Copy Code
Dim instance As SlideShowCellType
Dim value As String
 
instance.SlideShowServiceMethod = value
 
value = instance.SlideShowServiceMethod
C# 
public string SlideShowServiceMethod {get; set;}

Property Value

String containing the name of the Web service method

Example

This example creates a slide show cell type.
C#Copy Code
FarPoint.Web.Spread.Extender.SlideShowCellType ss = new FarPoint.Web.Spread.Extender.SlideShowCellType();
ss.Loop = true;
ss.PlayInterval = 1000;
ss.PlayButtonID = "Play";
ss.PlayButtonText = "Play";
ss.NextButtonID = "Next";
ss.StopButtonText = "Stop";
ss.PreviousButtonID = "Prev";
ss.StopButtonText = "Stop";
ss.SlideShowServiceMethod = "GetSlides";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = ss;

[Services.WebMethod()]
    [Script.Services.ScriptMethod()]
    public static AjaxControlToolkit.Slide[] GetSlides() {
        List items = new List(Of, AjaxControlToolkit.Slide);
        items.Add(new AjaxControlToolkit.Slide("./images/gnome-applications.png", "", ""));
        items.Add(new AjaxControlToolkit.Slide("./images/gnome-graphics.png", "", ""));
        items.Add(new AjaxControlToolkit.Slide("./images/gnome-joystick.png", "", ""));
        items.Add(new AjaxControlToolkit.Slide("./images/gnome-reboot.png", "", ""));
        items.Add(new AjaxControlToolkit.Slide("./images/gnome-shutdown.png", "", ""));
        items.Add(new AjaxControlToolkit.Slide("./images/gnome-window-manager.png", "", ""));
        return items.ToArray;
    }
Visual BasicCopy Code
Dim ss As New FarPoint.Web.Spread.Extender.SlideShowCellType
ss.Loop = True
ss.PlayInterval = 1000
ss.PlayButtonID = "Play"
ss.PlayButtonText = "Play"
ss.NextButtonID = "Next"
ss.StopButtonText = "Stop"
ss.PreviousButtonID = "Prev"
ss.StopButtonText = "Stop"
ss.SlideShowServiceMethod = "GetSlides"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = ss

<Services.WebMethod(), 
     Script.Services.ScriptMethod()>
Public Shared Function GetSlides() As AjaxControlToolkit.Slide()
        Dim items As New List(Of AjaxControlToolkit.Slide)
        items.Add(New AjaxControlToolkit.Slide("./images/gnome-applications.png", "", ""))
        items.Add(New AjaxControlToolkit.Slide("./images/gnome-graphics.png", "", ""))
        items.Add(New AjaxControlToolkit.Slide("./images/gnome-joystick.png", "", ""))
        items.Add(New AjaxControlToolkit.Slide("./images/gnome-reboot.png", "", ""))
        items.Add(New AjaxControlToolkit.Slide("./images/gnome-shutdown.png", "", ""))
        items.Add(New AjaxControlToolkit.Slide("./images/gnome-window-manager.png", "", ""))
        Return items.ToArray
    End Function

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.