Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Turtle
0.1.2
Types/Turtle/set_Fill.ps1
param
(
[string]
$Fill
=
'transparent'
)
if
(
-not
$this
.
'.Fill'
)
{
$this
|
Add-Member
-MemberType
NoteProperty
-Name
'.Fill'
-Value
$Fill
-Force
}
else
{
$this
.
'.Fill'
=
$Fill
}