Aracılığıyla paylaş


ReportViewerWebPart.ToolBarItemsDisplayMode Özelliği

Alır veya küme görüntülenecek araç çubuğu öğelerini belirten bir bit bayrakları numaralandırma değeri, ToolBarMode olarak küme Full.

Ad Alanı:  Microsoft.ReportingServices.SharePoint.UI.WebParts
Derleme:  Microsoft.ReportingServices.SharePoint.UI.WebParts (Microsoft.ReportingServices.SharePoint.UI.WebParts içinde.dll)

Sözdizimi

'Bildirim
<WebPartStorageAttribute(Storage.Shared)> _
Public Property ToolBarItemsDisplayMode As ToolBarItem
    Get
    Set
'Kullanım
Dim instance As ReportViewerWebPart
Dim value As ToolBarItem

value = instance.ToolBarItemsDisplayMode

instance.ToolBarItemsDisplayMode = value
[WebPartStorageAttribute(Storage.Shared)]
public ToolBarItem ToolBarItemsDisplayMode { get; set; }
[WebPartStorageAttribute(Storage::Shared)]
public:
property ToolBarItem ToolBarItemsDisplayMode {
    ToolBarItem get ();
    void set (ToolBarItem value);
}
[<WebPartStorageAttribute(Storage.Shared)>]
member ToolBarItemsDisplayMode : ToolBarItem with get, set
function get ToolBarItemsDisplayMode () : ToolBarItem
function set ToolBarItemsDisplayMode (value : ToolBarItem)

Özellik Değeri

Tür: Microsoft.ReportingServices.SharePoint.UI.WebParts.ToolBarItem
Hangi araç görüntüleneceðini belirtir bir bit bayrakları numaralandırma değeri.

Örnekler

Aşağıdaki örnek, nasıl kullanılacağını göster ToolBarItemsDisplayMode özelliğine küme görünürlüğünü araç çubuğu öğeleri.

// Display all toolbar items
rvwp.ToolBarItemsDisplayMode = ToolBarItem.All;

// Display the Atom Feed and Back buttons only
rvwp.ToolBarItemsDisplayMode = 
ToolBarItem.AtomFeed | ToolBarItem.Back;

// Display everything except Atom Feed and Back buttons
rvwp.ToolBarItemsDisplayMode = ToolBarItem.All ^ ToolBarItem.AtomFeed ^ ToolBarItem.Back;

// Remove Atom Feed from the current setting
rvwp.ToolBarItemsDisplayMode &= ~ToolBarItem.AtomFeed;
' Display all toolbar items
rvwp.ToolBarItemsDisplayMode = ToolBarItem.All

' Display the Atom Feed and Back buttons only
rvwp.ToolBarItemsDisplayMode = ToolBarItem.AtomFeed Or ToolBarItem.Back

' Display everything except Atom Feed and Back buttons
rvwp.ToolBarItemsDisplayMode = ToolBarItem.All Xor ToolBarItem.AtomFeed Xor ToolBarItem.Back

' Remove Atom Feed from the current setting
rvwp.ToolBarItemsDisplayMode = rvwp.ToolBarItemsDisplayMode And Not ToolBarItem.AtomFeed