Subscription Release and Updated SDK

Lots of really important news coming in right now, both because the mid-year updates of the Revit family products are now available and because we just released the Revit 2011 DevTV recordings that we are so excited about.

Similar to last year, Autodesk provides two types of mid-year updates to Revit:

Unlike the public web updates, the Revit 2011 subscription releases are available only for subscription customers.

Updated SDK

Both the web update and the subscription releases include a number of API enhancements. Last year, there were separate sets of updated SDKs for the WU2 and subscription release. This year, Autodesk provides one single updated SDK. Certain features are available only in the subscription release. They are clearly marked in the API reference documentation.

The updated SDK has been posted to the Revit Developer Center. Here is a direct link as well, for your convenience:

The product updates themselves do not include the updated SDK, so you have to download it separately.

In addition to the API enhancements, the SDK samples and the Revit Lookup tool have been updated.

Here is a summary of API changes and enhancements made in these releases:

Issues addressed

New Features

In addition to the enhancements listed above, it includes the following new API features:

Conceptual Energy Analysis API

Conceptual Energy Analysis API is a major enhancement to the Revit API. This feature will be functional only in sessions with licensed access to the Revit 2011 Subscription Advantage Pack. The following classes are added in the Autodesk.Revit.DB.Analysis namespace and provide access to the elements and objects created by Revit to perform energy analyses on conceptual design models: The following method supports the export of a gbXML file containing conceptual energy analysis elements (mass elements) only.

City Time Zone

The following new static method provides direct access to the results of a time zone calculation for a given longitude and latitude: The City class has been adjusted to return more accurate TimeZone values than in the previous implementation. Note that the properties, SiteLocation.Latitude and SiteLocation.Longitude, do not adjust the time zone of the site location according to these calculations. But you can make this change directly by setting the TimeZone property.

Document Preview

The following new methods are added to allow you to access the settings related to the stored document preview image for a given document: The following code snippet shows a sample use of the enhancement described above:
  // ... 
  View3D view3d 
    = d.FamilyCreate.NewView3D(
      new XYZ(1, 2, 0).Normalize() );
 
  // Assign permanent preview id
 
  DocumentPreviewSettings dps 
    = d.GetDocumentPreviewSettings();
 
  dps.PreviewViewId = view3d.Id;
  dps.ForceViewUpdate( true );
 
  t.Commit();
  d.SaveAs( @"C:\Door-Automated.rfa" ); 
  // ... 

Changes to the 2011 SDK