Name
property
Grasps asset's name.
Syntax
public string Name { get; }
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace NameExamples
{
public class NameExamples : NETStrategy
{
public override void OnQuote()
{
Asset[] ass=Asset.GetAllAssets();
Print(ass[0].Name);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.