VarEnum Wyliczenie
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przestroga
Marshalling VARIANTs may be unavailable in future releases.
Wskazuje sposób marshalingu elementów tablicy, gdy tablica jest marshaledowana z zarządzanego do niezarządzanego kodu jako SafeArray.
public enum class VarEnum
[System.Obsolete("Marshalling VARIANTs may be unavailable in future releases.")]
public enum VarEnum
public enum VarEnum
[System.Serializable]
public enum VarEnum
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum VarEnum
[<System.Obsolete("Marshalling VARIANTs may be unavailable in future releases.")>]
type VarEnum =
type VarEnum =
[<System.Serializable>]
type VarEnum =
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type VarEnum =
Public Enum VarEnum
- Dziedziczenie
- Atrybuty
Pola
VT_ARRAY | 8192 |
|
VT_BLOB | 65 | Wskazuje długość poprzedzoną prefiksem bajtów. |
VT_BLOB_OBJECT | 70 | Wskazuje, że obiekt blob zawiera obiekt . |
VT_BOOL | 11 | Wskazuje wartość logiczną. |
VT_BSTR | 8 | Wskazuje ciąg BSTR. |
VT_BYREF | 16384 | Wskazuje, że wartość jest odwołaniem. |
VT_CARRAY | 28 | Wskazuje tablicę stylów języka C. |
VT_CF | 71 | Wskazuje format schowka. |
VT_CLSID | 72 | Wskazuje identyfikator klasy. |
VT_CY | 6 | Wskazuje wartość waluty. |
VT_DATE | 7 | Wskazuje wartość DATE. |
VT_DECIMAL | 14 |
|
VT_DISPATCH | 9 |
|
VT_EMPTY | 0 | Wskazuje, że nie określono wartości. |
VT_ERROR | 10 | Wskazuje kod SCODE. |
VT_FILETIME | 64 | Wskazuje wartość FILETIME. |
VT_HRESULT | 25 | Wskazuje HRESULT. |
VT_I1 | 16 |
|
VT_I2 | 2 |
|
VT_I4 | 3 |
|
VT_I8 | 20 | Wskazuje 64-bitową liczbę całkowitą. |
VT_INT | 22 | Wskazuje wartość całkowitą. |
VT_LPSTR | 30 | Wskazuje ciąg zakończony o wartości null. |
VT_LPWSTR | 31 | Wskazuje szeroki ciąg zakończony przez |
VT_NULL | 1 | Wskazuje wartość null podobną do wartości null w języku SQL. |
VT_PTR | 26 | Wskazuje typ wskaźnika. |
VT_R4 | 4 |
|
VT_R8 | 5 |
|
VT_RECORD | 36 | Wskazuje typ zdefiniowany przez użytkownika. |
VT_SAFEARRAY | 27 | Wskazuje WARTOŚĆ SAFEARRAY. Nieprawidłowy w wariantie. |
VT_STORAGE | 67 | Wskazuje, że nazwa magazynu jest następująca. |
VT_STORED_OBJECT | 69 | Wskazuje, że magazyn zawiera obiekt. |
VT_STREAM | 66 | Wskazuje, że następuje nazwa strumienia. |
VT_STREAMED_OBJECT | 68 | Wskazuje, że strumień zawiera obiekt. |
VT_UI1 | 17 | Wskazuje wartość |
VT_UI2 | 18 | Wskazuje wartość |
VT_UI4 | 19 | Wskazuje wartość |
VT_UI8 | 21 | Wskazuje 64-bitową liczbę całkowitą bez znaku. |
VT_UINT | 23 |
|
VT_UNKNOWN | 13 |
|
VT_USERDEFINED | 29 | Wskazuje typ zdefiniowany przez użytkownika. |
VT_VARIANT | 12 | Wskazuje wskaźnik VARIANT |
VT_VECTOR | 4096 | Wskazuje prostą, zliczaną tablicę. |
VT_VOID | 24 | Wskazuje styl |
Przykłady
using namespace System;
using namespace System::Runtime::InteropServices;
// If you do not have a type library for an interface
// you can redeclare it using ComImportAttribute.
// This is how the interface would look in an idl file.
//[
//object,
//uuid("73EB4AF8-BE9C-4b49-B3A4-24F4FF657B26"),
//dual, helpstring("IMyStorage Interface"),
//pointer_default(unique)
//]
//interface IMyStorage : IDispatch
//{
// [id(1)]
// HRESULT GetItem([in] BSTR bstrName, [out, retval] IDispatch ** ppItem);
// [id(2)]
// HRESULT GetItems([in] BSTR bstrLocation, [out] SAFEARRAY(VARIANT)* pItems);
// [id(3)]
// HRESULT GetItemDescriptions([in] BSTR bstrLocation, [out] SAFEARRAY(VARIANT) ** ppItems);
// [id(4), propget]
// HRESULT get_IsEmpty([out, retval] BOOL * pfEmpty);
//};
// This is the managed declaration.
[ComImport]
[Guid("73EB4AF8-BE9C-4b49-B3A4-24F4FF657B26")]
interface class IMyStorage
{
[DispId(1)]
Object^ GetItem( [In,MarshalAs(UnmanagedType::BStr)]String^ bstrName );
//[return : MarshalAs(UnmanagedType::Interface)]
[DispId(2)]
void GetItems( [In,MarshalAs(UnmanagedType::BStr)]String^ bstrLocation, [Out,MarshalAs(UnmanagedType::SafeArray,
SafeArraySubType=VarEnum::VT_VARIANT)]array<Object^>^Items );
[DispId(3)]
void GetItemDescriptions( [In]String^ bstrLocation, [In,Out,MarshalAs(UnmanagedType::SafeArray)]array<Object^>^varDescriptions );
property bool IsEmpty
{
[DispId(4)]
[returnvalue:MarshalAs(UnmanagedType::VariantBool)]
bool get();
}
};
using System;
using System.Runtime.InteropServices;
namespace MyModule
{
// If you do not have a type library for an interface
// you can redeclare it using ComImportAttribute.
// This is how the interface would look in an idl file.
//[
//object,
//uuid("73EB4AF8-BE9C-4b49-B3A4-24F4FF657B26"),
//dual, helpstring("IMyStorage Interface"),
//pointer_default(unique)
//]
//interface IMyStorage : IDispatch
//{
// [id(1)]
// HRESULT GetItem([in] BSTR bstrName, [out, retval] IDispatch ** ppItem);
// [id(2)]
// HRESULT GetItems([in] BSTR bstrLocation, [out] SAFEARRAY(VARIANT)* pItems);
// [id(3)]
// HRESULT GetItemDescriptions([in] BSTR bstrLocation, [out] SAFEARRAY(VARIANT) ** ppItems);
// [id(4), propget]
// HRESULT get_IsEmpty([out, retval] BOOL * pfEmpty);
//};
// This is the managed declaration.
[ComImport]
[Guid("73EB4AF8-BE9C-4b49-B3A4-24F4FF657B26")]
public interface IMyStorage
{
[DispId(1)]
[return: MarshalAs(UnmanagedType.Interface)]
object GetItem([In, MarshalAs(UnmanagedType.BStr)] String bstrName);
[DispId(2)]
void GetItems([In, MarshalAs(UnmanagedType.BStr)] String bstrLocation,
[Out, MarshalAs( UnmanagedType.SafeArray,
SafeArraySubType = VarEnum.VT_VARIANT )] out Object[] Items);
[DispId(3)]
void GetItemDescriptions([In] String bstrLocation,
[In, Out, MarshalAs(UnmanagedType.SafeArray)] ref Object[] varDescriptions);
bool IsEmpty
{
[DispId(4)]
[return: MarshalAs(UnmanagedType.VariantBool)]
get;
}
}
}
Imports System.Runtime.InteropServices
Module MyModule
' If you do not have a type library for an interface
' you can redeclare it using ComImportAttribute.
' This is how the interface would look in an idl file.
'[
'object,
'uuid("73EB4AF8-BE9C-4b49-B3A4-24F4FF657B26"),
'dual, helpstring("IMyStorage Interface"),
'pointer_default(unique)
']
'interface IMyStorage : IDispatch
'{
' [id(1)]
' HRESULT GetItem([in] BSTR bstrName, [out, retval] IDispatch ** ppItem);
' [id(2)]
' HRESULT GetItems([in] BSTR bstrLocation, [out] SAFEARRAY(VARIANT)* pItems);
' [id(3)]
' HRESULT GetItemDescriptions([in] BSTR bstrLocation, [out] SAFEARRAY(VARIANT) ** ppItems);
' [id(4), propget]
' HRESULT get_IsEmpty([out, retval] BOOL * pfEmpty);
'};
' This is the managed declaration.
<ComImport(), Guid("73EB4AF8-BE9C-4b49-B3A4-24F4FF657B26")> _
Public Interface IMyStorage
<DispId(1)> _
Function GetItem(<InAttribute(), MarshalAs(UnmanagedType.BStr)> ByVal bstrName As String) _
As <MarshalAs(UnmanagedType.Interface)> Object
<DispId(2)> _
Function GetItems(<InAttribute(), MarshalAs(UnmanagedType.BStr)> ByVal bstrLocation As String, _
<OutAttribute(), MarshalAs(UnmanagedType.SafeArray, SafeArraySubType := VarEnum.VT_VARIANT)> _
ByVal Items() As Object)
<DispId(3)> _
Function GetItemDescriptions(<InAttribute()> ByVal bstrLocation As String, _
<InAttribute(), OutAttribute(), _
MarshalAs(UnmanagedType.SafeArray)> ByRef varDescriptions() As Object)
<DispId(4)> _
ReadOnly Property IsEmpty(<MarshalAs(UnmanagedType.VariantBool)> ByVal bEmpty As Boolean)
End Interface
End Module
Uwagi
Służy do System.Runtime.InteropServices.MarshalAsAttribute jawnego kontrolowania typu elementu .SafeArray