PathStructure.Key
PathStructure.Key property
संरचना कुंजी प्राप्त करता है।
public override int Key { get; }
उदाहरण
निम्न कोड पथ संरचना संरचना के साथ फ़ाइल लोड करने की क्षमता प्रदर्शित करता है।
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}