 | CGUIRenderLinePattern Method |
Render a line pattern.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void RenderLinePattern(
IntPtr hdc,
int left,
int bottom,
int right,
int top,
int pattern,
double thickness,
double pitch,
int col,
int is_enabled,
int is_button,
int is_selected
)
public static void RenderLinePattern(
IntPtr hdc,
int left,
int bottom,
int right,
int top,
int pattern,
double thickness,
double pitch,
int col,
int is_enabled,
int is_button,
int is_selected
)
Public Shared Sub RenderLinePattern (
hdc As IntPtr,
left As Integer,
bottom As Integer,
right As Integer,
top As Integer,
pattern As Integer,
thickness As Double,
pitch As Double,
col As Integer,
is_enabled As Integer,
is_button As Integer,
is_selected As Integer
)
Public Shared Sub RenderLinePattern (
hdc As IntPtr,
left As Integer,
bottom As Integer,
right As Integer,
top As Integer,
pattern As Integer,
thickness As Double,
pitch As Double,
col As Integer,
is_enabled As Integer,
is_button As Integer,
is_selected As Integer
)
public:
static void RenderLinePattern(
IntPtr hdc,
int left,
int bottom,
int right,
int top,
int pattern,
double thickness,
double pitch,
int col,
int is_enabled,
int is_button,
int is_selected
)
public:
static void RenderLinePattern(
IntPtr hdc,
int left,
int bottom,
int right,
int top,
int pattern,
double thickness,
double pitch,
int col,
int is_enabled,
int is_button,
int is_selected
)
static member RenderLinePattern :
hdc : IntPtr *
left : int *
bottom : int *
right : int *
top : int *
pattern : int *
thickness : float *
pitch : float *
col : int *
is_enabled : int *
is_button : int *
is_selected : int -> unit
static member RenderLinePattern :
hdc : IntPtr *
left : int *
bottom : int *
right : int *
top : int *
pattern : int *
thickness : float *
pitch : float *
col : int *
is_enabled : int *
is_button : int *
is_selected : int -> unit
Parameters
- hdc
- Type: SystemIntPtr
DC Handle - left
- Type: SystemInt32
Left value of the render rect in Windows coordinates (bottom>top) - bottom
- Type: SystemInt32
Bottom value - right
- Type: SystemInt32
Right value - top
- Type: SystemInt32
Top value - pattern
- Type: SystemInt32
Pattern number - thickness
- Type: SystemDouble
Pattern thickness - pitch
- Type: SystemDouble
Pattern pitch - col
- Type: SystemInt32
Pattern color - is_enabled
- Type: SystemInt32
Is this window enabled? - is_button
- Type: SystemInt32
Is this a button? - is_selected
- Type: SystemInt32
Is this window selected?
RemarksSame as RenderPattern_GUI but for line patterns.
See Also