Value |
Description |
0 |
Solid, uses object color. |
1 |
Lines, uses pattern file definition. |
2 |
Gradient, uses fill color definition. |
Rhino.HatchPatternFillType (strHatch)
strHatch |
Required. String. The name of an existing hatch pattern. |
Number |
The hatch pattern's fill type if successful. |
Null |
If not successful, or on error. |
Dim arrPatterns, strPattern, nFill
arrPatterns = Rhino.HatchPatternNames
For Each strPattern In arrPatterns
nFill = Rhino.HatchPatternFillType(strPattern)
Rhino.Print strPattern & " - " & CStr(nFill)
Next