| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/winrt/ |
Upload File : |
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// WindowsRuntimeAPISet
import "oaidl.idl";
import "inspectable.idl";
import "asyncinfo.idl";
import "eventtoken.idl";
#include <sdkddkver.h>
import "windowscontracts.idl";
namespace Windows.Foundation.Collections
{
[version(NTDDI_WIN8)]
[contract(Windows.Foundation.FoundationContract, 1)]
typedef enum CollectionChange
{
Reset, // Much of the Vector has changed.
ItemInserted, // An item added to the Vector.
// NewIndex contains the index of the item that was added.
ItemRemoved, // An item deleted from the Vector.
// NewIndex contains the index of the item that was deleted
ItemChanged, // An item changed in the Vector.
// NewIndex contains the index of the item that was changed.
} CollectionChange;
[
object,
uuid(575933df-34fe-4480-af15-07691f3d5d9b),
pointer_default(unique),
version(NTDDI_WIN8)
]
[contract(Windows.Foundation.FoundationContract, 1)]
interface IVectorChangedEventArgs : IInspectable
{
[propget] HRESULT CollectionChange ([out, retval] CollectionChange * value);
[propget] HRESULT Index ([out, retval] unsigned* value);
};
}