コード例 #1
0
        public static unsafe void RemoveAxis(IntPtr pointer)
        {
            GCHandle handle = GCHandle.FromIntPtr(pointer);

            if (handle.IsAllocated)
            {
                PlotModel model = handle.Target as PlotModel;
                if (model != null)
                {
                    model.RemoveAxis();
                }
            }
        }