forked from Aeraphe/excel-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
worksheet.d.vb
86 lines (61 loc) · 1.03 KB
/
worksheet.d.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
'/*
'Represents a worksheet.
'
'Example
'
'Worksheets(1).Visible = False
'
'*/
Public Class Worksheet()
'/*
'Makes the current sheet the active sheet.
'
'Example
'ActiveWorkbook.SendMail recipients:="Jean Selva"
'*/
Public Sub Activate()
End Sub
Public Sub Calculate()
End Sub
Public Sub Copy()
End Sub
Public Sub Delete()
End Sub
Public Sub Move()
End Sub
Public Sub Past()
End Sub
Public Sub PastSpecial()
End Sub
Public Sub Select()
End Sub
Public Sub SaveAs()
End Sub
'/*
'
'Returns a Range object that represents a cell or a range of cells.
'
'Example:
'
'Worksheets("Sheet1").Range("A1").Value = 3.14159
'
'*/
Public Property Range As Range
'/*
'
'Returns a Range object that represents all the rows on the specified worksheet.
'
'Example:
'
'Worksheets("Sheet1").Rows(3).Delete
'
'*/
Public Property Row As Range
'/*
'
'Returns a Long value that represents the index number of the
'object within the collection of similar objects.orksheets("Sheet1").Rows(3).Delete
'
'*/
Public Property Index As Long
End Class