Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
How can i find the DocumentType of a Document ?
I get the Template of a Document but io did't find the DocumentType.
Best regards , Vlad.
If you're in the Document API you want the ContentType property.
If you're in the Node API you want to use DocumentType.GetByAlias(string alias);
var docType = document.ContentType;var docType2 = DocumentType.GetByAlias(new Node(1234).NodeType);
Thanks ;
ContentType ct = doc.ContentType;
int id=ct.Id;
string alias = ct.Alias;
This is the final solution for ID and Alias
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
get DocumentType of a Docoment
How can i find the DocumentType of a Document ?
I get the Template of a Document but io did't find the DocumentType.
Best regards , Vlad.
If you're in the Document API you want the ContentType property.
If you're in the Node API you want to use DocumentType.GetByAlias(string alias);
Thanks ;
ContentType ct = doc.ContentType;
int id=ct.Id;
string alias = ct.Alias;
This is the final solution for ID and Alias
is working on a reply...