Assembly.ID Property

[Read-only] A unique identifier (GUID) for the Assembly object.

Syntax

public string ID { get; }

Example

// This example displays properties of an Assembly.
 
HotDocs.Server.Assembly HDSAssembly = _session.Assemblies.AddNew();
HDSAssembly.TemplatePath = "c:\\temp\\demoempl.docx";
 
 
System.Console.WriteLine("{0}: {1}","AnswerCollection (Count)", HDSAssembly.AnswerCollection.Count);
System.Console.WriteLine("{0}: {1}","AnswerFilePath", HDSAssembly.AnswerFilePath);
System.Console.WriteLine("{0}: {1}","AnswerFilePathData", HDSAssembly.AnswerFilePathData);
System.Console.WriteLine("{0}: {1}","Completed", HDSAssembly.Completed);
System.Console.WriteLine("{0}: {1}","ComponentCollection (Count)", HDSAssembly.ComponentCollection.Count);