GH_CapsuleCreateCapsule Method (Rectangle, GH_Palette, Int32, Int32) |
Create a new blank capsule.
Namespace:
Grasshopper.GUI.Canvas
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public static GH_Capsule CreateCapsule(
Rectangle box,
GH_Palette palette,
int[] radii,
int highlight
)
Public Shared Function CreateCapsule (
box As Rectangle,
palette As GH_Palette,
radii As Integer(),
highlight As Integer
) As GH_Capsule
Parameters
- box
- Type: System.DrawingRectangle
Box for capsule dimensions. The box will be grown until it is at least 3 pixels wide and high. - palette
- Type: Grasshopper.GUI.CanvasGH_Palette
Colour palette to apply. - radii
- Type: SystemInt32
Radii of rounded corners. This array must contain at least 4 integers.
Radii are defined clockwise, starting at the upper left corner. - highlight
- Type: SystemInt32
Height of the highlight bar. A value of zero or lower disables the highlight.
Return Value
Type:
GH_CapsuleA new instance of GH_Capsule. Caller is responsible for disposing of the object.
See Also