Spread WinForms 15
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IHyperlinks Interface / Add Method / Add(Int32,Int32,Int32,Int32,String,String,String,String) Method
The top row for the hyperlink
The left column for the hyperlink
The bottom row for the hyperlink
The right column for the hyperlink
The address of the hyperlink.
The subaddress of the hyperlink.
The screen tip to be displayed when the mouse pointer is paused over the hyperlink.
The text to be displayed for the hyperlink.


In This Topic
Add(Int32,Int32,Int32,Int32,String,String,String,String) Method
In This Topic
Adds a hyperlink to the specified range.
Syntax
'Declaration
 
Overloads Function Add( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal row2 As Integer, _
   ByVal column2 As Integer, _
   ByVal address As String, _
   Optional ByVal subAddress As String, _
   Optional ByVal screenTip As String, _
   Optional ByVal display As String _
) As IHyperlink
 
'Usage
 
Dim instance As IHyperlinks
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim address As String
Dim subAddress As String
Dim screenTip As String
Dim display As String
Dim value As IHyperlink
 
value = instance.Add(row, column, row2, column2, address, subAddress, screenTip, display)

Parameters

row
The top row for the hyperlink
column
The left column for the hyperlink
row2
The bottom row for the hyperlink
column2
The right column for the hyperlink
address
The address of the hyperlink.
subAddress
The subaddress of the hyperlink.
screenTip
The screen tip to be displayed when the mouse pointer is paused over the hyperlink.
display
The text to be displayed for the hyperlink.

Return Value

A IHyperlink object that represents the new hyperlink.
See Also