ContentTypeProperty

ContentTypeProperty class

Représente les informations d’identification.

public class ContentTypeProperty

Propriétés

NomLa description
IsNillable { get; set; }Indique si la valeur peut être vide.
Name { get; set; }Renvoie ou définit le nom de l’objet.
Type { get; set; }Obtient et définit le type de la propriété.
Value { get; set; }Renvoie ou définit la valeur de la propriété de type de contenu.

Exemples


[C#]

//Instanciation d'un objet Workbook
Workbook workbook = new Workbook();
//Ajouter une nouvelle propriété.
 workbook.ContentTypeProperties.Add("Admin", "Aspose", "text");
// Enregistrer le fichier Excel
workbook.Save("book1.xlsm");

 [Visual Basic]

'Instanciation d'un objet Workbook
Dim workbook As Workbook = New Workbook()
'Ajouter une nouvelle propriété.
 workbook.ContentTypeProperties.Add("Admin", "Aspose", "text")
'Enregistrez le fichier Excel
workbook.Save("book1.xlsm")

Voir également