> For the complete documentation index, see [llms.txt](https://docs.oserosuite.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.oserosuite.com/technical-notes/unreal-engine-notes/slate/set-default-value-for-slate-arguments.md).

# Set Default Value for Slate Arguments

`SLATE_BEGIN_ARGS` is a constructor, so you can set default values there.

```cpp
SLATE_BEGIN_ARGS(SSH_TextureOutput)
	: _NullTextureColour(FLinearColor(0.1f, 0.f, 0.f))
	, _Title("OUTPUT TEXTURE")
{}
	SLATE_ARGUMENT(FLinearColor, NullTextureColour)
	SLATE_ARGUMENT(FString, Title)
SLATE_END_ARGS()
```
