public enum CadDrawTypeMode extends Enum<CadDrawTypeMode>
Represents possible modes for colorization of objects.
| Enum Constant and Description |
|---|
UseDrawColor
Allows to use common color.
|
UseObjectColor
Allows to use separate color for every object.
|
| Modifier and Type | Method and Description |
|---|---|
static CadDrawTypeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadDrawTypeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadDrawTypeMode UseDrawColor
Allows to use common color.
public static final CadDrawTypeMode UseObjectColor
Allows to use separate color for every object.
public static CadDrawTypeMode[] values()
for (CadDrawTypeMode c : CadDrawTypeMode.values()) System.out.println(c);
public static CadDrawTypeMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.