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

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

private cairo_format_stride_for_width ( Format format, int width ) : int
format Format
width int
Результат int
        internal static extern int cairo_format_stride_for_width(Format format, int width);

Usage Example

Пример #1
0
 public static int FormatStrideForWidth(Format format, int width)
 {
     return(NativeMethods.cairo_format_stride_for_width(format, width));
 }
NativeMethods