From a6304ba5dd0efe2d5e2a16254aa9e7d2e74f5660 Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Wed, 6 Apr 2022 09:37:03 -0300 Subject: tdf#127477, tdf#131382 scope of function Minute Change the headng of the Minute function to indicate BASIC scope + refactoring of the Help page Change-Id: I50286245c2e2f573d0ad4c96e37bcb218efe2954 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/132632 Tested-by: Jenkins Reviewed-by: Olivier Hallot --- source/text/sbasic/shared/03030202.xhp | 102 +++++++++++++++++---------------- 1 file changed, 52 insertions(+), 50 deletions(-) diff --git a/source/text/sbasic/shared/03030202.xhp b/source/text/sbasic/shared/03030202.xhp index b0fd5425c8..979e62808a 100644 --- a/source/text/sbasic/shared/03030202.xhp +++ b/source/text/sbasic/shared/03030202.xhp @@ -1,56 +1,58 @@ - + - - - Minute Function - /text/sbasic/shared/03030202.xhp - - - -
-Minute function - -Minute Function - Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function. -
- Syntax: - -Minute (Number) + + + Minute Function + /text/sbasic/shared/03030202.xhp + + + +
+ Minute function + +

Minute Function (BASIC)

+ Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function. +
+ + + Minute (Number) + + + Integer + + + Number: Numeric expression that contains the serial time value that is used to return the minute value. + This function is the opposite of the TimeSerial function. It returns the minute of the serial time value that is generated by the TimeSerial or the TimeValue function. For example, the expression: + + Print Minute(TimeSerial(12,30,41)) - Return value: - Integer - Parameters: - - Number: Numeric expression that contains the serial time value that is used to return the minute value. - This function is the opposite of the TimeSerial function. It returns the minute of the serial time value that is generated by the TimeSerial or the TimeValue function. For example, the expression: - Print Minute(TimeSerial(12,30,41)) - returns the value 30. - - - Example: - - Sub ExampleMinute - MsgBox "The current minute is "& Minute(Now)& "." - End Sub - - + returns the value 30. + + + + + Sub ExampleMinute + MsgBox "The current minute is "& Minute(Now)& "." + End Sub + +
-- cgit