Exemple #1
0
        public static VLayoutNode Create()
        {
            IntPtr pLayoutNode = VLayoutNode_c.Create();

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

            return(new VLayoutNode(pLayoutNode));
        }
Exemple #2
0
 public virtual void Dispose()
 {
     VLayoutNode_c.Deconstructor(_pointer);
 }