[]
Gets whether the theme is a built-in theme.
Built-in themes are the predefined themes returned by the Themes
utility methods. Custom themes created programmatically return false.
bool IsBuiltIn { get; }
ReadOnly Property IsBuiltIn As Boolean
ITheme theme = Themes.Berlin;
bool builtIn = theme.IsBuiltIn;