Nevron .NET Vision
Nevron.GraphicsCore Namespace / NInteractivityStyle Class / NInteractivityStyle Constructor / NInteractivityStyle Constructor(Boolean,String,String,CursorType)
Set this parameter to true to generate in image map area for the visual object in AJAX mode. If its value is false and the user control is operating in AJAX mode, no image map area will be generated and all other parameters of this constructor will be ignored.
Use a null value to skip user data transmission to the client.
Specifies a tooltip to be displayed on mouse move over the visual object. Use a null value to display no tooltip.
Specifies a mouse cursor to be displayed on mouse move over the visual object. Use a CursorType.Default value to preserve the defult cursor.


In This Topic
    NInteractivityStyle Constructor(Boolean,String,String,CursorType)
    In This Topic
    Initializes an NInteractivityStyle object for custom client side usage.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal generateImageMapObject As System.Boolean, _
       ByVal userData As System.String, _
       ByVal toolTip As System.String, _
       ByVal cursorType As CursorType _
    )
    'Usage
     
    
    Dim generateImageMapObject As System.Boolean
    Dim userData As System.String
    Dim toolTip As System.String
    Dim cursorType As CursorType
     
    Dim instance As New NInteractivityStyle(generateImageMapObject, userData, toolTip, cursorType)
    public NInteractivityStyle( 
       System.bool generateImageMapObject,
       System.string userData,
       System.string toolTip,
       CursorType cursorType
    )

    Parameters

    generateImageMapObject
    Set this parameter to true to generate in image map area for the visual object in AJAX mode. If its value is false and the user control is operating in AJAX mode, no image map area will be generated and all other parameters of this constructor will be ignored.
    userData
    Use a null value to skip user data transmission to the client.
    toolTip
    Specifies a tooltip to be displayed on mouse move over the visual object. Use a null value to display no tooltip.
    cursorType
    Specifies a mouse cursor to be displayed on mouse move over the visual object. Use a CursorType.Default value to preserve the defult cursor.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also