Gets or sets the number of non-displayed images that will be streamed and loaded when lazy loading is enabled.
Syntax
Visual Basic (Declaration) | |
---|
Public Property HiddenImages As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As LazyLoading
Dim value As Integer
instance.HiddenImages = value
value = instance.HiddenImages
|
C# | |
---|
public int HiddenImages {get; set;} |
Managed Extensions for C++ | |
---|
public: __property int get_HiddenImages();
public: __property void set_HiddenImages(
int value
); |
C++/CLI | |
---|
public:
property int HiddenImages {
int get();
void set (int value);
} |
Return Value
An
Int32 indicating the number of non displayed images that will be loaded in memory.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also