1.
WPF Example - IronPython Cookbook Jul 28, 2007 ... Button StackPanel = System.Windows.Controls.StackPanel Label = System.Windows.Controls.Label Thickness = System.Windows. ...
2.
Converting a Word document to Text - IronPython Cookbook Jan 21, 2009 ... The module below demonstrates how to convert a batch of Word documents to text. If calling from a command line, you can pass the path of the ...
3.
Windows Automation - IronPython Cookbook Jan 8, 2008 ... NET 3 includes a new automation library which should make life easier: System.Windows.Automation. Here is an example of it in action: ...
4.
XSL Transform XML Files - IronPython Cookbook Jun 9, 2007 ... Xml.Xsl import XslCompiledTransform xsl = XslCompiledTransform() xsl.Load("C:\Temp\transform.xsl") xsl.Transform("C:\Temp\input.xml", ...
5.
XSL Transform XML Files - IronPython Cookbook Jun 9, 2007 ... Xml.Xsl import XslCompiledTransform xsl = XslCompiledTransform() xsl.Load("C:\Temp\transform.xsl") xsl.Transform("C:\Temp\input.xml", ...
6.
Preview All Installed Fonts - IronPython Cookbook A simple WinForms app that shows you how to preview all of the fonts installed on your system. Uses LisBox, TextBox, ComboBox, and StatusBar. ...
7.
Replace Text within a Word document - IronPython Cookbook Jan 21, 2009 ... From IronPython Cookbook. Below, the doc_replace_text method demonstrates how ... The method accepts the name of the template Word document ...
8.
Windows Automation - IronPython Cookbook Jan 8, 2008 ... AddReference('UIAutomationTypes') from System.Windows.Automation import * tops = AutomationElement.RootElement.FindAll(TreeScope. ...
9.
Extremely Late Binding - IronPython Cookbook Apr 7, 2008 ... NET 2.0.50727.1433 Copyright (c) Microsoft Corporation. ... GetTypeFromProgID(progid)) def __call__(self, member, *args): """Makes a ...
10.
Folder Backup Utility - IronPython Cookbook Jun 18, 2007 ... This is an example of a folder backup utility (included is a command-line option parser also). Although originally designed to allow the ...
|