ContentTypeProperty

ContentTypeProperty class

Rappresenta le informazioni sull’identificatore.

public class ContentTypeProperty

Proprietà

NomeDescrizione
IsNillable { get; set; }Indica se il valore può essere vuoto.
Name { get; set; }Restituisce o imposta il nome dell’oggetto.
Type { get; set; }Ottiene e imposta il tipo della proprietà.
Value { get; set; }Restituisce o imposta il valore della proprietà del tipo di contenuto.

Esempi


[C#]

//Creazione di un'istanza di un oggetto cartella di lavoro
Workbook workbook = new Workbook();
//Aggiungi una nuova proprietà.
 workbook.ContentTypeProperties.Add("Admin", "Aspose", "text");
//Salva il file Excel
workbook.Save("book1.xlsm");

 [Visual Basic]

'Creazione di un'istanza di un oggetto Workbook
Dim workbook As Workbook = New Workbook()
'Aggiungi una nuova proprietà.
 workbook.ContentTypeProperties.Add("Admin", "Aspose", "text")
'Salva il file Excel
workbook.Save("book1.xlsm")

Guarda anche