In This Topic
Sets the location and dimensions for a cell note when the style sets the note to always be shown.
Syntax
'Declaration
Public Sub SetNoteBounds( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim x As Integer
Dim y As Integer
Dim width As Integer
Dim height As Integer
instance.SetNoteBounds(row, column, x, y, width, height)
public void SetNoteBounds(
int ,
int column,
int ,
int ,
int ,
int
)
Parameters
- row
- Row index of cell with note
- column
- Column index of cell with note
- x
- X-coordinate of beginning of note
- y
- Y-coordinate of beginning of note
- width
- Number of pixels in width of note
- height
- Number of pixels in height of note
See Also