Search Results for

    Show / Hide Table of Contents

    Class FeaturePageAction

    • C#
    • Visual Basic
    [JsonObject]
    public class FeaturePageAction
    <JsonObject>
    Public Class FeaturePageAction
    Inheritance
    System.Object
    FeaturePageAction
    CallbackPageAction
    HidePageAction
    NextStepPageAction
    PreviousStepPageAction
    SetHtmlPageAction
    SetStepPageAction
    SetTextPageAction
    SetValuePageAction
    ShowPageAction
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: HomeSeer.PluginSdk.Features.Responses.PageActions
    Assembly: PluginSdk.dll


    An action to be executed on a feature page using javascript


    Constructors

    View Source

    FeaturePageAction()

    Create a new, empty FeaturePageAction

    Declaration
    • C#
    • Visual Basic
    [JsonConstructor]
    public FeaturePageAction()
    <JsonConstructor>
    Public Sub New
    View Source

    FeaturePageAction(String, String, String)

    Create a new FeaturePageAction

    Declaration
    • C#
    • Visual Basic
    public FeaturePageAction(string pageAction, string selector, string data = null)
    Public Sub New(pageAction As String, selector As String, data As String = Nothing)
    Parameters
    Type Name Description
    System.String pageAction

    The key for the action to take. See EPageAction

    System.String selector

    The JQuery Selector to use

    System.String data

    Data to include with the action. See documentation on each action for more info.

    Properties

    View Source

    Data

    Additional data associated with the action

    Declaration
    • C#
    • Visual Basic
    [JsonProperty("data")]
    public string Data { get; set; }
    <JsonProperty("data")>
    Public Property Data As String
    Property Value
    Type Description
    System.String
    View Source

    PageAction

    The page action to take. See EPageAction for acceptable keys

    Declaration
    • C#
    • Visual Basic
    [JsonProperty("page_action")]
    public string PageAction { get; set; }
    <JsonProperty("page_action")>
    Public Property PageAction As String
    Property Value
    Type Description
    System.String
    View Source

    Selector

    The JQuery selector to use when performing the action

    Declaration
    • C#
    • Visual Basic
    [JsonProperty("selector")]
    public string Selector { get; set; }
    <JsonProperty("selector")>
    Public Property Selector As String
    Property Value
    Type Description
    System.String

    See Also

    PageActionResponse
    • View Source
    In This Article
    Back to top HomeSeer Technologies