Skip to content

Commit

Permalink
Update M_omExcel.def
Browse files Browse the repository at this point in the history
add SelectRow Function
  • Loading branch information
RaoulJacobs authored Mar 27, 2023
1 parent e60edc0 commit 9d5df4a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion M_omExcel.def
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ End Sub
Public Sub SelectColumn(columnIndex As Long)
omExcelFunctions.SelectColumn xlWB.ActiveSheet, columnIndex
End Sub
Public Sub SelectRow(rowIndex As Long)
omExcelFunctions.SelectRow xlWB.ActiveSheet, rowIndex
End Sub
Public Sub FormatColumn(columnIndex As Long, numberFormat As String)
omExcelFunctions.FormatColumn xlWB.ActiveSheet, columnIndex, numberFormat
End Sub
Expand All @@ -51,4 +54,4 @@ Private Sub Class_Terminate()
Set xlWB = Nothing
xlApp.Quit
Set xlApp = Nothing
End Sub
End Sub

0 comments on commit 9d5df4a

Please sign in to comment.