geCreatePacket
geCreatePacket(
w_window
t_name
t_stippleName
t_lineStyleName
t_fillColorName
t_outlineColorName
[ d_lineThickness ]
[ g_reuse ]
[ t_fillStyleName ]
)
=> t / nil
Description
Creates or updates a DFII display packet. The reuse flag indicates whether to use an existing display packet with the given name or to update it with given parameters.
Arguments
|
w_window
|
Window used to get the display.
|
|
t_name
|
The name of the display packet to be created.
|
|
t_stippleName
|
The stipple name of the packet.
|
|
t_lineStyleName
|
The line style name of the packet.
|
|
t_fillColorName
|
The fill color name of the packet.
|
|
t_outlineColorName
|
The outline color name of the packet.
|
|
d_lineThickness
|
The line thickness of the packet.
|
|
g_reuse
|
When false, erases and re-creates an existing packet.
|
|
t_fillStyleName
|
The fill style name of the packet.
|
Value Returned
|
t
|
The display packet was created or updated.
|
|
nil
|
The display packet was not created or updated.
|
Examples
geCreatePacket(window(3) "pkt1" "solid" "solid" "green" "green" 4 nil)
Related Topics
Utility Functions
Return to top