2 implementations of Interface
System.Windows.Forms (2)
System\Windows\Forms\Accessibility\AccessibleObject.cs (1)
42
IEnumVARIANT.
Interface
,
System\Windows\Forms\Accessibility\AccessibleObject.EnumVariantObject.cs (1)
12
private unsafe class EnumVariantObject : IEnumVARIANT.
Interface
, IManagedWrapper<IEnumVARIANT>
18 references to Interface
System.Windows.Forms (10)
System\Windows\Forms\Accessibility\AccessibleObject.cs (6)
113
private IEnumVARIANT.
Interface
? _enumVariant;
185
private IEnumVARIANT.
Interface
EnumVariant => _enumVariant ??= new EnumVariantObject(this);
2582
HRESULT IEnumVARIANT.
Interface
.Clone(IEnumVARIANT** ppEnum) => EnumVariant.Clone(ppEnum);
2584
HRESULT IEnumVARIANT.
Interface
.Next(uint celt, VARIANT* rgVar, uint* pCeltFetched)
2587
HRESULT IEnumVARIANT.
Interface
.Reset() => EnumVariant.Reset();
2589
HRESULT IEnumVARIANT.
Interface
.Skip(uint celt) => EnumVariant.Skip(celt);
System\Windows\Forms\Accessibility\AccessibleObject.EnumVariantObject.cs (4)
30
HRESULT IEnumVARIANT.
Interface
.Clone(IEnumVARIANT** ppEnum)
44
HRESULT IEnumVARIANT.
Interface
.Reset()
59
HRESULT IEnumVARIANT.
Interface
.Skip(uint celt)
75
HRESULT IEnumVARIANT.
Interface
.Next(uint celt, VARIANT* rgVar, uint* pCeltFetched)
System.Windows.Forms.Interop.Tests (2)
AccessibleObjectTests.cs (2)
451
var
enumVariant = (IEnumVARIANT.
Interface
)accessibleObject;
System.Windows.Forms.Primitives (6)
Windows.Win32.IEnumVARIANT.g.cs (4)
74
winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out
Interface
__object);
108
winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out
Interface
__object);
142
winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out
Interface
__object);
173
winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out
Interface
__object);
Windows.Win32.System_Ole_IEnumVARIANT_Extensions.g.cs (2)
23
/// <inheritdoc cref="winmdroot.System.Ole.IEnumVARIANT.
Interface
.Next(uint, winmdroot.System.Variant.VARIANT*, uint*)"/>
24
internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumVARIANT.
Interface
@this, Span<winmdroot.System.Variant.VARIANT> rgVar, out uint pCeltFetched)