Locked Flags Into An Array?

R

Raeldor

Hi,

In VSTO I can get a range's cell values into an array with ...

variable=(System.Array)range.cells.value2;

But I can't seem to do...

variable=(System.Array)range.cells.locked;

locked seems to be system.dbnull. How can I get the lock flags back as an
array?

Thanks!
Ray
 
J

Jialiang Ge [MSFT]

Hello Rael,

From your post, my understanding on this issue is: you want to know why the
line variable=(System.Array)range.cells.locked; return system.dbnull,
instead of an array of locked properties of the celss. If I'm off base,
please feel free to let me know.

When I test the line of code, VSTO reports the following exception:
Unable to cast object of type 'System.Boolean' to type 'System.Array'.
According to the MSDN article
http://msdn2.microsoft.com/en-us/library/aa175691(office.11).aspx (locked
property as it applies to the CellFormat and Range objects), the Locked
property of Range is True if the object is locked, False if the object can
be modified when the sheet is protected. Returns Null if the specified
range contains both locked and unlocked cells. Therefore, we could not cast
the Range.Locked to a System.Array object. If you do want to get an array,
we need to iterate the cells in the range and put each Locked property into
an array object.

Please let me know if you have any other concerns, or need anything else.

Sincerely,
Jialiang Ge ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
For MSDN subscribers whose posts are left unanswered, please check this
document: http://blogs.msdn.com/msdnts/pages/postingAlias.aspx

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express/Windows Mail, please make sure
you clear the check box "Tools/Options/Read: Get 300 headers at a time" to
see your reply promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
J

Jialiang Ge [MSFT]

Hi Ray,

Would you mind letting me know the result of the suggestions? If you need
further assistance, feel free to let me know. I will be more than happy to
be of assistance.

Have a great day!

Sincerely,
Jialiang Ge ([email protected], remove 'online.')
Microsoft Online Community Support

=================================================
When responding to posts, please "Reply to Group" via your newsreader
so that others may learn and benefit from your issue.
=================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top