[DllImport(Abci.Lib, BestFitMapping = false, ThrowOnUnmappableChar = true)] public static extern aeProperty aeNewProperty(IntPtr self, string name, aePropertyType type);
public aeProperty NewProperty(string name, aePropertyType type) { return(NativeMethods.aeNewProperty(self, name, type)); }
[DllImport("abci")] public static extern aeProperty aeNewProperty(aeObject parent, string name, aePropertyType type);
[DllImport("abci")] static extern aeProperty aeNewProperty(IntPtr self, string name, aePropertyType type);
public aeProperty NewProperty(string name, aePropertyType type) { return(aeNewProperty(self, name, type)); }
[DllImport("AlembicExporter")] public static extern aeProperty aeNewProperty(aeObject parent, string name, aePropertyType type);