Top "Visibility" questions

Visibility is an attribute of an object.

Protection level of a struct field within a class

I am fairly new to C# programming so this is likely a beginner's question. I get a "'A.Test.That.…

c# struct visibility protection
Reasons to use private instead of protected for fields and methods

This is a rather basic OO question, but one that's been bugging me for some time. I tend to avoid …

oop visibility private protected
Symbol visibility using g++

I compiled a C++ library under Linux/Mac with its symbols hidden. I've used _attribute_ ((visibility("hidden"))) for all my …

linux g++ visibility symbols hidden
Fading Element on Scroll

I'm curious how I can create a DIV (or anything really) that I can fade (or change opacity of) when …

javascript html scroll visibility fade
Why can attributes in Java be public?

As everybody knows, Java follows the paradigms of object orientation, where data encapsulation says, that fields (attributes) of an object …

java oop visibility
Why is the extension of my Swift class not visible outside the defining file?

I have an Xcode-generated NSManagedObject class for my CoreData model. @objc(SomeClass) class SomeClass : NSManagedObject { /* ... */ } It is defined in a …

ios swift visibility nsmanagedobject
Why there are only 75 visible characters in Intellij Idea's embedded terminal?

When I use Idea's embedded command prompt in the tools window I can only see 75 characters. The chars are there …

intellij-idea console visibility
How to restrict visibility of items?

Imagine that we have an AnchorPane, it has child Pane and there we have Button, for example. I want this …

javafx-2 visibility pane
Silverlight 4: how to switch control visibility

I am using MVVM in my Silverlight app. When control visibility is need to be managed by data, I am …

silverlight mvvm binding silverlight-4.0 visibility
Scala final vs val for concurrency visibility

In Java, when using an object across multiple threads (and in general), it is good practice to make fields final. …

scala concurrency visibility final actor