ID | ToolTip | Default |
---|---|---|
type | Property type | int |
property | Property name | MyProperty |
field | The variable backing this property | myVar |
private $type$ $field$; public $type$ $property$ { get { return $field$;} set { SetProperty(ref $field$, value);} } $end$