Package | com.adobe.photoshop |
Class | public class LayerSet |
Inheritance | LayerSet ![]() ![]() ![]() ![]() |
Since : | CS5 |
Property | Defined By | ||
---|---|---|---|
![]() | allLocked : Boolean
If true, the layer's contents and settings are locked. | Layer | |
artLayers : ArtLayers [read-only]
The art layers contained in this layer set. | LayerSet | ||
![]() | blendMode : BlendMode
The mode to use when compositing an object. | Layer | |
![]() | bounds : Array [read-only]
Bounding rectangle of the Layer. | Layer | |
enabledChannels : Array
The channels that are enabled for the layer set. | LayerSet | ||
![]() | hostObjectDelegate : HostObject Getter for the delegate | CSHostObject | |
layers : Layers [read-only]
The layers in this layer set. | LayerSet | ||
layerSets : LayerSets [read-only]
The layer sets contained within the layer set. | LayerSet | ||
![]() | linkedLayers : Array [read-only]
The layers linked to this layer. | Layer | |
![]() | name : String
The name of the layer. | Layer | |
![]() | opacity : Number
The layer's master opacity (as a percentage). | Layer | |
![]() | parent : * [read-only] | PhotoshopHostObject | |
![]() | visible : Boolean
If true, the layer is visible. | Layer | |
![]() | xmpMetadata : XmpMetadata [read-only]
The XMP properties of the document. | Layer |
Method | Defined By | ||
---|---|---|---|
![]() |
create a duplicate of the object
| Layer | |
![]() | filterArgsForHBAPI(args:Array):Array [static]
Function to clean up the argument list and put it into a format that
makes sense for HBAPI. | CSHostObject | |
![]() | filterSingleObjectForHBAPI(value:Object):Object [static]
| CSHostObject | |
![]() | getClassObjectForName(className:String):HostObject [static] This returns a "Class" object, meaning, a HostObject that can be used
to make static function calls or get static properties
| CSHostObject | |
![]() | getSpecialTranslation(className:String, ho:HostObject, expectedReturnType:Class, ownerName:String):* [static] | CSHostObject | |
![]() | hostCall(name:String, expectedReturnType:Class, rawargs:Array):*
Encapsulates a function call to the host
| CSHostObject | |
![]() | hostCallStatic(className:String, methodName:String, expectedReturnType:Class, rawargs:Array):* [static]
Implements a safe call of a static method on the host
| CSHostObject | |
![]() | hostGet(name:String, expectedReturnType:Class):*
Encapsulates a property get to the host
| CSHostObject | |
![]() | hostGetIndex(idx:Object, expectedReturnType:Class):*
Encapsulates a indexed get to the host
| CSHostObject | |
![]() | hostGetStatic(className:String, propertyName:String, expectedReturnType:Class):* [static]
Implements a safe get of a static property on the host
Used by for instance, all the enum implementations. | CSHostObject | |
![]() | hostSet(name:String, rawvalue:*):void
Encapsulates a property set to the host
| CSHostObject | |
![]() | hostSetStatic(className:String, propertyName:String, rawvalue:*):* [static]
Implements a safe set of a static property on the host
| CSHostObject | |
![]() | isDescendedFrom(clz:Class, ancClass:Class):Boolean [static] Efficiently determines whether or not one class descends from
another in inheritance hierarchy- class relationships are cached
by the ClassUtils implementation-
(uses org.as3commons lib to quickly discover class hierarchy. | CSHostObject | |
![]() |
Links the layer with the specified layer. | Layer | |
Merges the layer set. | LayerSet | ||
![]() | move(relativeObject:Object, insertionLocation:ElementPlacement):void
move the object
| Layer | |
![]() | remove():void
delete the object
| Layer | |
![]() | replaceDefaultArgs(args:Array, defaultArgs:Array):Array
Function to tidy up arguments prior to call. | CSHostObject | |
![]() | resize(horizontal:Number = 100, vertical:Number = 100, anchor:AnchorPosition = null):void
Scales the object. | Layer | |
![]() | rotate(angle:Number, anchor:AnchorPosition = null):void
Rotates the object. | Layer | |
![]() | translate(deltaX:Object = null, deltaY:Object = null):void
Moves the object relative to its current position. | Layer | |
![]() | unlink():void
Unlinks the layer. | Layer | |
![]() | wrapReturnedHostObject(rawObject:Object, expectedReturnType:Class, client:CSHostObject, propertyName:String):* [static]
Method used on static/normal get/ hostcalls
| CSHostObject |
artLayers | property |
artLayers:ArtLayers
[read-only] Since : | CS5 |
The art layers contained in this layer set.
public function get artLayers():ArtLayers
enabledChannels | property |
enabledChannels:Array
Since : | CS5 |
The channels that are enabled for the layer set. Must be a list of component channels.
public function get enabledChannels():Array
public function set enabledChannels(value:Array):void
layers | property |
layers:Layers
[read-only] Since : | CS5 |
The layers in this layer set.
public function get layers():Layers
layerSets | property |
layerSets:LayerSets
[read-only] Since : | CS5 |
The layer sets contained within the layer set.
public function get layerSets():LayerSets
merge | () | method |