C# Simple Select/Get Layer by Name
Hi i just want to select a layer using its name, it is possible using JS, VBA but i am unable to find a similar solution for Visual basic C#.
Also if possible where can i find a full list of Methods and functions available in C# object library like this com.adobe.photoshop.ArtLayer
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MintCorePS;
using ps = Photoshop;
using K = PhotoshopTypeLibrary.PSConstants;
namespace Core
{
class Program
{
static void Main(string[] args)
{
//Initiate Photoshop
ps.ApplicationClass App = new ps.ApplicationClass();
ps.ActionDescriptorClass AppAction = new ps.ActionDescriptorClass();
var Layer = App.ActiveDocument.ArtLayers.getLayerByName("Core");
}
}
}
Thank you in advance.
