Property Event

Fired once for each property found within an entity.

Syntax

ANSI (Cross Platform)
virtual int FireProperty(ODataPropertyEventParams *e);
typedef struct {
const char *Name;
const char *TypeName;
int Nullable; int reserved; } ODataPropertyEventParams; Unicode (Windows) virtual INT FireProperty(ODataPropertyEventParams *e);
typedef struct {
LPCWSTR Name;
LPCWSTR TypeName;
BOOL Nullable; INT reserved; } ODataPropertyEventParams;
- (void)onProperty:(NSString*)name :(NSString*)typeName :(BOOL)nullable;
#define EID_ODATA_PROPERTY 9

virtual INT IPWORKS_CALL FireProperty(LPSTR &lpszName, LPSTR &lpszTypeName, BOOL &bNullable);

Remarks

The Property event is fired once for each property found within an entity after setting SchemaEntityIndex.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]