Spread Silverlight Documentation
ToInt Method


The value to be converted.
Convert value to System.Int32.
Syntax
'Declaration
 
Public Shared Function ToInt( _
   ByVal value As System.Object _
) As System.Integer
'Usage
 
Dim value As System.Object
Dim value As System.Integer
 
value = CalcConvert.ToInt(value)
public static System.int ToInt( 
   System.object value
)

Parameters

value
The value to be converted.

Return Value

A System.Int32 indicate the convert result.
Exceptions
ExceptionDescription
System.InvalidCastExceptionCan not convert value to System.Int32
Remarks
If value is a null reference (Nothing in Visual Basic), return 0. If value is double, or float, or decimal, orlong, or short, or sbyte, or ulong, oruint, or ushort, or byte, explicitly convert it to System.Int32. If value is bool, return 1 if the value is true, otherwise return 0. If value is System.DateTime, return OADate of value. If value is System.TimeSpan, return TotalDays of value.
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

CalcConvert Class
CalcConvert Members

 

 


Copyright © GrapeCity, inc. All rights reserved.