// // This file manually written from cef/include/internal/cef_types.h. // C API name: cef_v8_propertyattribute_t. // namespace Cef3 { using System; /// /// V8 property attribute values. /// [Flags] public enum CefV8PropertyAttribute { None = 0, ReadOnly = 1 << 0, DontEnum = 1 << 1, DontDelete = 1 << 2, } }