|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function GetFormattedTime (
nTimeInMs as Int32,
bShowHour as Boolean,
bShowMs as Boolean
) as String
|
|
[C#]
public string GetFormattedTime (
Int32 nTimeInMs
bool bShowHour,
bool bShowMs
);
|
|
[C++]
public: string GetFormattedTime (
Int32 nTimeInMs
bool bShowHour,
bool bShowMs
);
|
|
Parameter
|
Description
| ||||||
|
|
| ||||||
|
nTimeinMs
|
Time, expressed in milliseconds, to convert to a formatted string
| ||||||
|
bShowHour
|
Boolean value that tells the player to avoid displaying the 'hour' position field
| ||||||
|
bShowMs
|
Boolean value that tells the player to avoid displaying the 'milliseconds' position field
|
|
Value
|
Meaning
|
|
|
|
|
Empty string
|
An error occurred (see the LastError property for further error details)
|
|
Valid string
|
The formatted time
|