共用方式為


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>

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

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)包含一個 尋找按鈕, 可切換尋找對話框。 下圖顯示了預設介面下的 FlowDocumentReader 搜尋對話框。

含調註的截圖:FlowDocumentReader

IsFindEnabledfalse時, 搜尋 按鈕不會出現在介面上 FlowDocumentReader

相依財產資訊

項目 價值
識別碼欄位 IsFindEnabledProperty
元資料屬性設為 true 沒有

適用於

另請參閱