GetBlipName
Gets the name of a blip.
C# Syntax
string NAPI.Blip.GetBlipName(Blip blip);
Parameters
- blip: The blip to get the color from. Parameter input should be in Blip type
Example
var list = NAPI.Pools.GetAllBlips();
foreach (Blip blip in list)
{
if (string.IsNullOrEmpty(NAPI.Blip.GetBlipName(blip)))
{
NAPI.Blip.SetBlipName(blip, "My blip");
}
}