Inheritance: System.Runtime.InteropServices.SafeHandle
Example #1
0
 internal static extern ErrorCode windower_text_set_weight(SafeTextHandle text_handle, FontWeight weight);
Example #2
0
 internal static extern ErrorCode windower_text_show_background(SafeTextHandle text_handle);
Example #3
0
 internal static extern ErrorCode windower_text_set_style(SafeTextHandle text_handle, FontStyles style);
Example #4
0
 internal static extern ErrorCode windower_text_set_text(SafeTextHandle text_handle, byte[] text);
Example #5
0
 internal static extern ErrorCode windower_text_set_location(SafeTextHandle text_handle, int x, int y);
Example #6
0
 internal static extern ErrorCode windower_text_set_padding(SafeTextHandle text_handle, float pixels);
Example #7
0
 internal static extern ErrorCode windower_text_set_foreground(SafeTextHandle text_handle, byte r, byte g, byte b, byte a);
Example #8
0
 internal static extern ErrorCode windower_text_set_font(SafeTextHandle text_handle, byte[] typeface, float size);
Example #9
0
 internal static extern ErrorCode windower_text_set_alignment(SafeTextHandle text_handle, TextAlignment alignment);
Example #10
0
 internal static extern ErrorCode windower_text_hide(SafeTextHandle text_handle);
Example #11
0
 internal static extern ErrorCode windower_text_create(SafeInstanceHandle handle, out SafeTextHandle result, byte[] name);