Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi, yes by casting the block to IContent
var content = myBlock as IContent;
if (content != null)
{
var name = content.Name;
}
Or do you mean the type's displayname?
var repo = ServiceLocator.Current.GetInstance<BlockTypeRepository>();
var blockType = repo.Load<T>();
return blockType.DisplayName;
How can I get the displayname of a block in code?