All Downloads are FREE. Search and download functionalities are using the official Maven repository.

system.windows.media.Brushes Maven / Gradle / Ivy

/*
 *  MIT License
 *
 *  Copyright (c) 2024 MASES s.r.l.
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy
 *  of this software and associated documentation files (the "Software"), to deal
 *  in the Software without restriction, including without limitation the rights
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 *  copies of the Software, and to permit persons to whom the Software is
 *  furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in all
 *  copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 *  SOFTWARE.
 */

/**************************************************************************************
 * 
 *      This code was generated from a template using JCOReflector v. 1.15.0.0
 * 
 *      Manual changes to this file may cause unexpected behavior in your application.
 *      Manual changes to this file will be overwritten if the code is regenerated.
 * 
 *************************************************************************************/

package system.windows.media;

import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;

// Import section
import system.windows.media.SolidColorBrush;


/**
 * The base .NET class managing System.Windows.Media.Brushes, PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
 * 

* * .NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Windows.Media.Brushes *

* * Powered by JCOBridge: more info at https://www.jcobridge.com * * @author MASES s.r.l https://masesgroup.com * @version 1.15.0.0 */ public class Brushes extends NetObject { /** * Fully assembly qualified name: PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 */ public static final String assemblyFullName = "PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; /** * Assembly name: PresentationCore */ public static final String assemblyShortName = "PresentationCore"; /** * Qualified class name: System.Windows.Media.Brushes */ public static final String className = "System.Windows.Media.Brushes"; static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName); /** * The type managed from JCOBridge. See {@link JCType} */ public static JCType classType = createType(); static JCEnum enumInstance = null; JCObject classInstance = null; static JCType createType() { try { String classToCreate = className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); if (JCOReflector.getDebug()) JCOReflector.writeLog("Creating %s", classToCreate); JCType typeCreated = bridge.GetType(classToCreate); if (JCOReflector.getDebug()) JCOReflector.writeLog("Created: %s", (typeCreated != null) ? typeCreated.toString() : "Returned null value"); return typeCreated; } catch (JCException e) { JCOReflector.writeLog(e); return null; } } void addReference(String ref) throws Throwable { try { bridge.AddReference(ref); } catch (JCNativeException jcne) { throw translateException(jcne); } } /** * Internal constructor. Use with caution */ public Brushes(java.lang.Object instance) throws Throwable { super(instance); if (instance instanceof JCObject) { classInstance = (JCObject) instance; } else throw new Exception("Cannot manage object, it is not a JCObject"); } public String getJCOAssemblyName() { return assemblyFullName; } public String getJCOClassName() { return className; } public String getJCOObjectName() { return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); } public java.lang.Object getJCOInstance() { return classInstance; } public void setJCOInstance(JCObject instance) { classInstance = instance; super.setJCOInstance(classInstance); } public JCType getJCOType() { return classType; } /** * Try to cast the {@link IJCOBridgeReflected} instance into {@link Brushes}, a cast assert is made to check if types are compatible. * @param from {@link IJCOBridgeReflected} instance to be casted * @return {@link Brushes} instance * @throws java.lang.Throwable in case of error during cast operation */ public static Brushes cast(IJCOBridgeReflected from) throws Throwable { NetType.AssertCast(classType, from); return new Brushes(from.getJCOInstance()); } // Constructors section public Brushes() throws Throwable { } // Methods section // Properties section public static SolidColorBrush getAliceBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("AliceBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getAntiqueWhite() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("AntiqueWhite"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getAqua() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Aqua"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getAquamarine() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Aquamarine"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getAzure() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Azure"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBeige() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Beige"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBisque() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Bisque"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBlack() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Black"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBlanchedAlmond() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("BlanchedAlmond"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Blue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBlueViolet() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("BlueViolet"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBrown() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Brown"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getBurlyWood() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("BurlyWood"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getCadetBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CadetBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getChartreuse() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Chartreuse"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getChocolate() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Chocolate"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getCoral() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Coral"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getCornflowerBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("CornflowerBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getCornsilk() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Cornsilk"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getCrimson() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Crimson"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getCyan() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Cyan"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkCyan() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkCyan"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkGoldenrod() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkGoldenrod"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkGray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkKhaki() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkKhaki"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkMagenta() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkMagenta"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkOliveGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkOliveGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkOrange() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkOrange"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkOrchid() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkOrchid"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkRed() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkRed"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkSalmon() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkSalmon"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkSeaGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkSeaGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkSlateBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkSlateBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkSlateGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkSlateGray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkTurquoise() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkTurquoise"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDarkViolet() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DarkViolet"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDeepPink() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DeepPink"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDeepSkyBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DeepSkyBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDimGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DimGray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getDodgerBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("DodgerBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getFirebrick() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Firebrick"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getFloralWhite() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("FloralWhite"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getForestGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("ForestGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getFuchsia() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Fuchsia"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGainsboro() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Gainsboro"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGhostWhite() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("GhostWhite"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGold() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Gold"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGoldenrod() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Goldenrod"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Gray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Green"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getGreenYellow() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("GreenYellow"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getHoneydew() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Honeydew"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getHotPink() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("HotPink"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getIndianRed() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("IndianRed"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getIndigo() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Indigo"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getIvory() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Ivory"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getKhaki() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Khaki"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLavender() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Lavender"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLavenderBlush() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LavenderBlush"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLawnGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LawnGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLemonChiffon() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LemonChiffon"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightCoral() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightCoral"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightCyan() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightCyan"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightGoldenrodYellow() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightGoldenrodYellow"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightGray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightPink() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightPink"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightSalmon() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightSalmon"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightSeaGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightSeaGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightSkyBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightSkyBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightSlateGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightSlateGray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightSteelBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightSteelBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLightYellow() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LightYellow"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLime() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Lime"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLimeGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("LimeGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getLinen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Linen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMagenta() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Magenta"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMaroon() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Maroon"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumAquamarine() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumAquamarine"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumOrchid() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumOrchid"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumPurple() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumPurple"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumSeaGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumSeaGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumSlateBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumSlateBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumSpringGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumSpringGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumTurquoise() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumTurquoise"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMediumVioletRed() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MediumVioletRed"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMidnightBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MidnightBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMintCream() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MintCream"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMistyRose() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("MistyRose"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getMoccasin() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Moccasin"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getNavajoWhite() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("NavajoWhite"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getNavy() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Navy"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getOldLace() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("OldLace"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getOlive() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Olive"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getOliveDrab() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("OliveDrab"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getOrange() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Orange"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getOrangeRed() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("OrangeRed"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getOrchid() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Orchid"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPaleGoldenrod() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PaleGoldenrod"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPaleGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PaleGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPaleTurquoise() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PaleTurquoise"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPaleVioletRed() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PaleVioletRed"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPapayaWhip() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PapayaWhip"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPeachPuff() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PeachPuff"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPeru() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Peru"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPink() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Pink"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPlum() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Plum"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPowderBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("PowderBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getPurple() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Purple"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getRed() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Red"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getRosyBrown() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("RosyBrown"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getRoyalBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("RoyalBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSaddleBrown() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SaddleBrown"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSalmon() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Salmon"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSandyBrown() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SandyBrown"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSeaGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SeaGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSeaShell() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SeaShell"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSienna() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Sienna"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSilver() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Silver"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSkyBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SkyBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSlateBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SlateBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSlateGray() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SlateGray"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSnow() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Snow"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSpringGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SpringGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getSteelBlue() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("SteelBlue"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getTan() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Tan"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getTeal() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Teal"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getThistle() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Thistle"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getTomato() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Tomato"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getTransparent() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Transparent"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getTurquoise() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Turquoise"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getViolet() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Violet"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getWheat() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Wheat"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getWhite() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("White"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getWhiteSmoke() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("WhiteSmoke"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getYellow() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("Yellow"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static SolidColorBrush getYellowGreen() throws Throwable, system.ArgumentException, system.ArgumentNullException, system.resources.MissingManifestResourceException, system.InvalidOperationException, system.ArgumentOutOfRangeException, system.FormatException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject val = (JCObject)classType.Get("YellowGreen"); return new SolidColorBrush(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } // Instance Events section }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy