Sha256: e99abb26118b653d8b5254008d157c6de0d1a2b16f1f08e7bb3648832b7cf877

Contents?: true

Size: 973 Bytes

Versions: 38

Compression:

Stored size: 973 Bytes

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

require 'rubygems'
require 'write_xlsx'

workbook  = WriteXLSX.new('protection.xlsx')
worksheet = workbook.add_worksheet

# Create some format objects
unlocked = workbook.add_format(:locked => 0)
hidden   = workbook.add_format(:hidden => 1)

# Format the columns
worksheet.set_column('A:A', 45)
worksheet.set_selection('B3')

# Protect the worksheet
worksheet.protect

# Examples of cell locking and hiding.
worksheet.write('A1', 'Cell B1 is locked. It cannot be edited.')
worksheet.write_formula('B1', '=1+2', nil, 3)    # Locked by default.

worksheet.write('A2', 'Cell B2 is unlocked. It can be edited.')
worksheet.write_formula('B2', '=1+2', unlocked, 3)

worksheet.write('A3', "Cell B3 is hidden. The formula isn't visible.")
worksheet.write_formula('B3', '=1+2', hidden, 3)

worksheet.write('A5', 'Use Menu->Tools->Protection->Unprotect Sheet')
worksheet.write('A6', 'to remove the worksheet protection.')

workbook.close

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
write_xlsx-0.81.0 examples/protection.rb
write_xlsx-0.80.0 examples/protection.rb
write_xlsx-0.79.0 examples/protection.rb
write_xlsx-0.78.0 examples/protection.rb
write_xlsx-0.77.2 examples/protection.rb
write_xlsx-0.77.1 examples/protection.rb
write_xlsx-0.77.0 examples/protection.rb
write_xlsx-0.76.3 examples/protection.rb
write_xlsx-0.76.2 examples/protection.rb
write_xlsx-0.76.1 examples/protection.rb
write_xlsx-0.76.0 examples/protection.rb
write_xlsx-0.75.0 examples/protection.rb
write_xlsx-0.74.0 examples/protection.rb
write_xlsx-0.73.0 examples/protection.rb
write_xlsx-0.72.3.beta1 examples/protection.rb
write_xlsx-0.72.2 examples/protection.rb
write_xlsx-0.72.1 examples/protection.rb
write_xlsx-0.72.0 examples/protection.rb
write_xlsx-0.71.0 examples/protection.rb
write_xlsx-0.70.0 examples/protection.rb