Wednesday, July 21, 2010

Code Formatter Plugin for Windows Live Writer

There’s a new version of the Code Formatter Plugin for Windows Live Writer.
The new version is 2.5 and can be found at http://code.google.com/p/codeformatterpluginforwindowslivewriter

The biggest feature of 2.5 is the ability to insert snippets of code as an image (guaranteeing exact formatting no matter what blog engine you’re on).
You can also add effects to the images, such as reflections and perspectives.

Here is an example as image:

And as text:

Public Sub WriteXRec() Dim oDict As AcadDictionary Dim oXRec As AcadXRecord Dim dxfCode(0 To 1) As Integer Dim dxfData(0 To 1) Set oDict = ThisDrawing.Dictionaries.Add("SampleTest") Set oXRec = oDict.AddXRecord("Record1") dxfCode(0) = 1: dxfData(0) = "First Value" dxfCode(1) = 2: dxfData(1) = "Second Value" oXRec.SetXRecordData dxfCode, dxfData End Sub

Thanks for the update Steve Dunn.

No comments:

Post a Comment