From 61173c1b58efa79c0ba6b08348d2796a249d0186 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Sep 2012 09:51:27 -0500 Subject: move help structure one directory up Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc --- source/text/sbasic/shared/03030202.xhp | 65 ++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 source/text/sbasic/shared/03030202.xhp (limited to 'source/text/sbasic/shared/03030202.xhp') diff --git a/source/text/sbasic/shared/03030202.xhp b/source/text/sbasic/shared/03030202.xhp new file mode 100644 index 0000000000..3369b16cb3 --- /dev/null +++ b/source/text/sbasic/shared/03030202.xhp @@ -0,0 +1,65 @@ + + + + + + + + + Minute Function [Runtime] + /text/sbasic/shared/03030202.xhp + + + +
+Minute function + +Minute Function [Runtime] + 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) + 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 + +
\ No newline at end of file -- cgit