| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Floater and Region")> <DescriptionAttribute("Indicating whether to paint the floater image")> Public Overridable Property FloaterVisible As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As RasterImageViewer Dim value As Boolean instance.FloaterVisible = value value = instance.FloaterVisible | |
| C# | |
|---|---|
[CategoryAttribute("Floater and Region")] [DescriptionAttribute("Indicating whether to paint the floater image")] public virtual bool FloaterVisible {get; set;} | |
| C++/CLI | |
|---|---|
[CategoryAttribute("Floater and Region")] [DescriptionAttribute("Indicating whether to paint the floater image")] public: virtual property bool FloaterVisible { bool get(); void set ( bool value); } | |
Property Value
true if this RasterImageViewer should paint the RasterImageViewer.FloaterImage if available; otherwise, false.For an example, refer to FloaterPosition.
The RasterImageViewer.FloaterImage is painted at the position specified by FloaterPosition.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code