Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.08 KB

File metadata and controls

43 lines (33 loc) · 1.08 KB
title Set Radix Command
description Learn about the Set Radix command and how it sets or returns the numeric base used to display integer values.
ms.date 11/04/2016
ms.topic reference
f1_keywords
debug.setradix
helpviewer_keywords
Set Radix command
Debug.SetRadix command
author Mikejo5000
ms.author mikejo
ms.subservice general-ide

Set Radix Command

Sets or returns the numeric base used to display integer values.

Syntax

Debug.SetRadix [10 | 16 | hex | dec]

Arguments

10 or 16 or hex or dec

Optional. Indicates decimal (10 or dec) or hexadecimal (16 or hex). If an argument is omitted, then the current radix value is returned.

Example

This example sets the environment to display integer values in hexadecimal format.

>Debug.SetRadix hex

See also