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