Esempio n. 1
0
        public new static BorderView Create(Rect rect, string name, int unk1, int unk2)
        {
            IntPtr pView = BorderView_c.Create(rect, name, unk1, unk2);

            if (pView == IntPtr.Zero)
            {
                return(null);
            }

            return(new BorderView(pView));
        }
Esempio n. 2
0
 public void SetClient(View client, float x1, float y1, float x2, float y2)
 {
     BorderView_c.SetClient(_pointer, client.Pointer, x1, y1, x2, y2);
 }
Esempio n. 3
0
 public override void Dispose()
 {
     BorderView_c.Deconstructor(_pointer);
 }