VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.JavaScriptApi Namespace / PdfJsEvent Class / CreateFieldKeystrokeEventObject(PdfJsField,Object,String,String,Int32,Int32,Boolean) Method
Syntax Requirements SeeAlso
In This Topic
    CreateFieldKeystrokeEventObject(PdfJsField,Object,String,String,Int32,Int32,Boolean) Method (PdfJsEvent)
    In This Topic
    Creates the event object for Field/Keystroke event.
    Syntax
    'Declaration
    
    Public Shared Function CreateFieldKeystrokeEventObject( _
    ByVal target
    The target.
    As PdfJsField, _
    ByVal value
    The value.
    As System.Object, _
    ByVal change
    The change.
    As System.String, _
    ByVal changeEx
    The export value of the change and is available only during a Field/Keystroke event for list boxes and combo boxes.
    As System.String, _
    ByVal selStart
    The selection start.
    As System.Int32, _
    ByVal selEnd
    The selection end.
    As System.Int32, _
    ByVal willCommit
    A value indicating whether the field value will commit.
    As Boolean _
    ) As PdfJsEvent
    public static PdfJsEvent CreateFieldKeystrokeEventObject(
    PdfJsField target,
    System.Object value,
    System.String change,
    System.String changeEx,
    System.Int32 selStart,
    System.Int32 selEnd,
    bool willCommit
    )
    public: static PdfJsEvent* CreateFieldKeystrokeEventObject(
    PdfJsField* target,
    System.Object value,
    System.String change,
    System.String changeEx,
    System.Int32 selStart,
    System.Int32 selEnd,
    bool willCommit
    )
    public:
    static PdfJsEvent^ CreateFieldKeystrokeEventObject(
    PdfJsField^ target,
    System.Object value,
    System.String change,
    System.String changeEx,
    System.Int32 selStart,
    System.Int32 selEnd,
    bool willCommit
    )

    Parameters

    target
    The target.
    value
    The value.
    change
    The change.
    changeEx
    The export value of the change and is available only during a Field/Keystroke event for list boxes and combo boxes.
    selStart
    The selection start.
    selEnd
    The selection end.
    willCommit
    A value indicating whether the field value will commit.

    Return Value

    JsEvent object.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also