PropertyCallback Type
Deprecated in 5.0. Use PropertyHandler
from @itwin/ecschema-metadata
instead.
PropertyCallback = (name: string, meta: PropertyMetaData) => void
A callback function to process properties of an Entity
@example
// Current usage:
const callback: PropertyCallback = (name: string, propMetaData: PropertyMetaData) => {
console.log(`Property name: ${name}, Property type: ${propMetaData.primitiveType}`);
};
// Replacement:
const callback: PropertyHandler = (propName: string, property: Property) => {
console.log(`Property name: ${propName}, Property type: ${property.propertyType}`);
};
Defined in
- core/common/src/EntityProps.ts Line 106
Last Updated: 03 April, 2025
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.