Environ Function [Runtime]/text/sbasic/shared/03130800.xhpSun Microsystems, Inc.converted from old format - fpeEnviron functionEnviron Function [Runtime]Returns the value of an environment variable as a string. Environment variables are dependent on the type of operating system that you have.Syntax:Environ (Environment As String)Return value:StringParameters:Environment: Environment variable that you want to return the value for.Example:Sub ExampleEnvironDim sTemp As StringsTemp=Environ ("TEMP")If sTemp = "" Then sTemp=Environ("TMP")MsgBox "'" & sTemp & "'" ,64,"Directory of temporary files:"End Sub