Spreadsheet.SetTextLabel
This function sets a new text label for the specified variable.
SVB Example
Adding a text label:
Option Base 1
Option Explicit
Sub Main
Dim spr As Spreadsheet
'creates a new spreadsheet and assigns it to the object spr
Set spr = Spreadsheets.New("Text Label")
'creates a new text label for variable 1
spr.SetTextLabel(1,1000,"Wheat","Type of bread preferred")
spr.Value(1,1) = 1000
'sets the spreadsheet to visible
spr.Visible = True
End Sub
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.
