Allows to convert from the type of the object to a type that is supported by the storage.
Syntax
| Visual Basic (Declaration) | |
|---|
Overridable Function ChangeToDataType( _
ByVal value As Object _
) As Object |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ICustomDataTypesStorage
Dim value As Object
Dim value As Object
value = instance.ChangeToDataType(value)
|
| C# | |
|---|
virtual object ChangeToDataType(
object value
) |
| Managed Extensions for C++ | |
|---|
virtual Object* ChangeToDataType(
Object* value
) |
| C++/CLI | |
|---|
virtual Object^ ChangeToDataType(
Object^ value
) |
Parameters
- value
- Value from the persistent object that is converted to a type supported by the storage.
Return Value
The value converted to a type that is supported by the storage.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also