Cairo.NativeMethods.cairo_font_options_destroy C# (CSharp) Метод

cairo_font_options_destroy() приватный Метод

private cairo_font_options_destroy ( IntPtr options ) : void
options System.IntPtr
Результат void
        internal static extern void cairo_font_options_destroy(IntPtr options);

Usage Example

Пример #1
0
        protected virtual void Dispose(bool disposing)
        {
            if (!disposing || CairoDebug.Enabled)
            {
                CairoDebug.OnDisposed <FontOptions> (handle, disposing);
            }

            if (handle == IntPtr.Zero)
            {
                return;
            }

            NativeMethods.cairo_font_options_destroy(handle);
            handle = IntPtr.Zero;
        }
All Usage Examples Of Cairo.NativeMethods::cairo_font_options_destroy
NativeMethods