FlowDocumentReader.IsFindEnabled 屬性

定義

取得或設定值,這個值表示 Find 傳送的命令是否已啟用。

public:
 property bool IsFindEnabled { bool get(); void set(bool value); };
public bool IsFindEnabled { get; set; }
member this.IsFindEnabled : bool with get, set
Public Property IsFindEnabled As Boolean

屬性值

true 表示啟用 Find 傳送的命令,否則為 false。 預設為 true

範例

下列範例示範如何設定 IsFindEnabled 屬性。

<FlowDocumentReader
  IsFindEnabled="True"  
  IsPrintEnabled="True"
  MinZoom="50" MaxZoom="1000"
  Zoom="120" ZoomIncrement="5"
>
  <FlowDocument>
    <Paragraph>
      Flow content...
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

下列範例示範如何以程式設計方式設定 IsFindEnabled 屬性。

FlowDocumentReader flowDocRdr = new FlowDocumentReader();

// Enable find...
flowDocRdr.IsFindEnabled = true;
// Enable printing...
flowDocRdr.IsPrintEnabled = true;
// Set zoom between 50% and 1000%.
flowDocRdr.MinZoom = 50;
flowDocRdr.MaxZoom = 1000;
// Set the zoom increment to 5%.
flowDocRdr.ZoomIncrement = 5;
// Set the initial zoom to 120%.
flowDocRdr.Zoom = 120;

FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Flow content...")));
flowDocRdr.Document = flowDoc;
Dim flowDocRdr As New FlowDocumentReader()

' Enable find...
flowDocRdr.IsFindEnabled = True
' Enable printing...
flowDocRdr.IsPrintEnabled = True
' Set zoom between 50% and 1000%.
flowDocRdr.MinZoom = 50
flowDocRdr.MaxZoom = 1000
' Set the zoom increment to 5%.
flowDocRdr.ZoomIncrement = 5
' Set the initial zoom to 120%.
flowDocRdr.Zoom = 120

Dim flowDoc As New FlowDocument(New Paragraph(New Run("Flow content...")))
flowDocRdr.Document = flowDoc

備註

預設 FlowDocumentReader 使用者介面 (UI) 包含切換 [尋找] 對話方塊的 [ 尋找 ] 按鈕。 下圖顯示具有預設 UI 的 FlowDocumentReader [尋找] 對話方塊。

圖說文字的螢幕擷取畫面:FlowDocumentReader

當 為 falseIsFindEnabled ,[尋找] 按鈕不會出現在 FlowDocumentReader UI 上。

相依性屬性資訊

識別碼欄位 IsFindEnabledProperty
設定為 的中繼資料屬性 true

適用於

另請參閱