Option to pick automatic, left, or right rolls. private void Dymo() { try { PrintDocument pd = new PrintDocument(); pd.PrinterSettings.PrinterName = “DYMO LabelWriter 450 Twin Turbo”; PrinterSettings.PaperSourceCollection sources = pd.PrinterSettings.PaperSources; // pd.DefaultPageSettings.PaperSource = sources[0]; // Automatic // pd.DefaultPageSettings.PaperSource = sources[1]; …

C# Print directly to a Dymo LabelWriter 450 Twin Turbo Read more »